@diplodoc/cli-tests 5.36.0 → 5.36.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/e2e/__snapshots__/files.spec.ts.snap +1 -2
- package/e2e/__snapshots__/merge-includes.spec.ts.snap +241 -30
- package/e2e/__snapshots__/pdf-page.spec.ts.snap +151 -0
- package/e2e/__snapshots__/regression.test.ts.snap +244 -54
- package/e2e/merge-includes.spec.ts +45 -1
- package/e2e/pdf-page.spec.ts +27 -0
- package/mocks/merge-includes/hash-section-html/input/_includes/mixed.md +11 -0
- package/mocks/merge-includes/hash-section-html/input/index.md +3 -0
- package/mocks/merge-includes/hash-section-html/input/main.md +13 -0
- package/mocks/merge-includes/hash-section-html/input/toc.yaml +5 -0
- package/mocks/merge-includes/html-in-list/input/_includes/styles.md +7 -0
- package/mocks/merge-includes/html-in-list/input/index.md +3 -0
- package/mocks/merge-includes/html-in-list/input/main.md +11 -0
- package/mocks/merge-includes/html-in-list/input/toc.yaml +5 -0
- package/mocks/merge-includes/term-extract/input/_includes/chapter.md +7 -0
- package/mocks/merge-includes/term-extract/input/index.md +3 -0
- package/mocks/merge-includes/term-extract/input/main.md +7 -0
- package/mocks/merge-includes/term-extract/input/toc.yaml +5 -0
- package/mocks/merge-includes/yfm-table/input/_includes/cell-content.md +1 -0
- package/mocks/merge-includes/yfm-table/input/index.md +3 -0
- package/mocks/merge-includes/yfm-table/input/main.md +12 -0
- package/mocks/merge-includes/yfm-table/input/toc.yaml +5 -0
- package/mocks/pdf-page/custom-pdf-icon/input/.yfm +6 -0
- package/mocks/pdf-page/custom-pdf-icon/input/_assets/custom-pdf-icon.svg +1 -0
- package/mocks/pdf-page/custom-pdf-icon/input/index.md +1 -0
- package/mocks/pdf-page/custom-pdf-icon/input/pdf/output.pdf +0 -0
- package/mocks/pdf-page/custom-pdf-icon/input/toc.yaml +2 -0
- package/mocks/regression/input/autotitle.md +33 -1
- package/mocks/regression/input/includes/fragments.md +24 -0
- package/mocks/regression/input/includes/styles.md +8 -0
- package/mocks/regression/input/includes.md +9 -0
- package/mocks/regression/input/toc.yaml +2 -0
- package/package.json +1 -1
|
@@ -23,6 +23,8 @@ exports[`Regression > internal > filelist 1`] = `
|
|
|
23
23
|
"includes.md",
|
|
24
24
|
"includes/deep-hash.md",
|
|
25
25
|
"includes/fragments-hash.md",
|
|
26
|
+
"includes/fragments.md",
|
|
27
|
+
"includes/styles-hash.md",
|
|
26
28
|
"includes/test-hash.md",
|
|
27
29
|
"includes/tools-hash.md",
|
|
28
30
|
"includes/user-hash.md",
|
|
@@ -31,6 +33,7 @@ exports[`Regression > internal > filelist 1`] = `
|
|
|
31
33
|
"merge/merge.md",
|
|
32
34
|
"merge/merged.md",
|
|
33
35
|
"merge/toc.yaml",
|
|
36
|
+
"mermaid-hash.md",
|
|
34
37
|
"mermaid.md",
|
|
35
38
|
"openapi/index.md",
|
|
36
39
|
"openapi/test-controller/getHiddenTest.md",
|
|
@@ -63,6 +66,7 @@ exports[`Regression > internal > filelist 2`] = `
|
|
|
63
66
|
"included-item.html",
|
|
64
67
|
"includer-of-entry.html",
|
|
65
68
|
"includes.html",
|
|
69
|
+
"includes/fragments.html",
|
|
66
70
|
"index.html",
|
|
67
71
|
"latex.html",
|
|
68
72
|
"merge/merge.html",
|
|
@@ -157,10 +161,41 @@ Special local title
|
|
|
157
161
|
Circular title
|
|
158
162
|
[Header](./autotitle.md#header)
|
|
159
163
|
|
|
164
|
+
Autotitle from include
|
|
165
|
+
<!-- [{#T}](includes/fragments.md#f3) -->
|
|
166
|
+
|
|
167
|
+
Include with autotitle
|
|
168
|
+
<!-- {% include [test](includes/fragments.md#f4) %} -->
|
|
169
|
+
|
|
170
|
+
link with [some local term1](*term1-1)
|
|
171
|
+
|
|
172
|
+
{% list tabs %}
|
|
173
|
+
|
|
174
|
+
- Название таба 1
|
|
175
|
+
|
|
176
|
+
Текст таба 1.
|
|
177
|
+
|
|
178
|
+
* Можно использовать списки.
|
|
179
|
+
* И **другую** разметку.
|
|
180
|
+
|
|
181
|
+
- Название таба 2
|
|
182
|
+
|
|
183
|
+
Текст таба 2.
|
|
184
|
+
|
|
185
|
+
{% endlist %}
|
|
186
|
+
|
|
187
|
+
All fragments
|
|
188
|
+
|
|
189
|
+
{% include [test](includes/fragments-hash.md) %}
|
|
190
|
+
|
|
191
|
+
|
|
160
192
|
## Header {#header}
|
|
161
193
|
|
|
162
|
-
|
|
163
|
-
|
|
194
|
+
Content2
|
|
195
|
+
|
|
196
|
+
{% include [test](includes/styles-hash.md) %}
|
|
197
|
+
|
|
198
|
+
[*term1-1]: {% include [test](includes/fragments-hash.md#f3) %}"
|
|
164
199
|
`;
|
|
165
200
|
|
|
166
201
|
exports[`Regression > internal 4`] = `
|
|
@@ -358,13 +393,22 @@ Text
|
|
|
358
393
|
|
|
359
394
|
[[?](*term)](http://ya.ru)
|
|
360
395
|
|
|
396
|
+
[Term 1](*term1) [Term 2](*term2)
|
|
361
397
|
|
|
362
398
|
Link after include
|
|
363
399
|
[Subtitle](./1.md#subtitle)
|
|
364
400
|
|
|
401
|
+
Autotitle include
|
|
402
|
+
<!-- [{#T}](includes/fragments.md#f3) -->
|
|
403
|
+
|
|
365
404
|
Link after include
|
|
366
405
|
|
|
406
|
+
## Mermaid
|
|
407
|
+
{% include [test](mermaid-hash.md) %}
|
|
408
|
+
|
|
367
409
|
[*term]: Test terms
|
|
410
|
+
[*term1]: {% include [test](includes/fragments-hash.md#f3) %}
|
|
411
|
+
[*term2]: {% include [test](includes/fragments-hash.md#f3) %}
|
|
368
412
|
"
|
|
369
413
|
`;
|
|
370
414
|
|
|
@@ -380,8 +424,12 @@ __system:
|
|
|
380
424
|
|
|
381
425
|
exports[`Regression > internal 16`] = `
|
|
382
426
|
"---
|
|
427
|
+
metadata:
|
|
428
|
+
- name: generator
|
|
429
|
+
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
383
430
|
__system:
|
|
384
431
|
testVar: test-value
|
|
432
|
+
vcsPath: includes/fragments.md
|
|
385
433
|
---
|
|
386
434
|
### F1 {#f1}
|
|
387
435
|
Content F1
|
|
@@ -400,15 +448,83 @@ Some paragraph with anchor {#p1}
|
|
|
400
448
|
Some paragraph without anchor
|
|
401
449
|
|
|
402
450
|
Some paragraph with anchor {#p2}
|
|
451
|
+
|
|
452
|
+
## F4 {#f4}
|
|
453
|
+
Content F4
|
|
454
|
+
[Header](../autotitle.md#header)
|
|
455
|
+
|
|
456
|
+
### F4.1 {#f4.1}
|
|
457
|
+
link with [some term1](*term1)
|
|
458
|
+
|
|
459
|
+
{% list tabs %}
|
|
460
|
+
|
|
461
|
+
- Название таба 1
|
|
462
|
+
|
|
463
|
+
Текст таба 1.
|
|
464
|
+
|
|
465
|
+
* Можно использовать списки.
|
|
466
|
+
* И **другую** разметку.
|
|
467
|
+
|
|
468
|
+
- Название таба 2
|
|
469
|
+
|
|
470
|
+
Текст таба 2.
|
|
471
|
+
|
|
472
|
+
{% endlist %}
|
|
473
|
+
|
|
474
|
+
[*term1]: Some description
|
|
403
475
|
"
|
|
404
476
|
`;
|
|
405
477
|
|
|
406
478
|
exports[`Regression > internal 17`] = `
|
|
407
479
|
"---
|
|
480
|
+
metadata:
|
|
481
|
+
- name: generator
|
|
482
|
+
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
408
483
|
__system:
|
|
409
484
|
testVar: test-value
|
|
485
|
+
vcsPath: includes/fragments.md
|
|
410
486
|
---
|
|
411
|
-
|
|
487
|
+
### F1 {#f1}
|
|
488
|
+
Content F1
|
|
489
|
+
|
|
490
|
+
## F2 {#f2}
|
|
491
|
+
Content F2
|
|
492
|
+
|
|
493
|
+
### F2.1 {#f2.1}
|
|
494
|
+
Content F2.1
|
|
495
|
+
|
|
496
|
+
## F3 {#f3}
|
|
497
|
+
Content F3
|
|
498
|
+
|
|
499
|
+
Some paragraph with anchor {#p1}
|
|
500
|
+
|
|
501
|
+
Some paragraph without anchor
|
|
502
|
+
|
|
503
|
+
Some paragraph with anchor {#p2}
|
|
504
|
+
|
|
505
|
+
## F4 {#f4}
|
|
506
|
+
Content F4
|
|
507
|
+
[Header](../autotitle.md#header)
|
|
508
|
+
|
|
509
|
+
### F4.1 {#f4.1}
|
|
510
|
+
link with [some term1](*term1)
|
|
511
|
+
|
|
512
|
+
{% list tabs %}
|
|
513
|
+
|
|
514
|
+
- Название таба 1
|
|
515
|
+
|
|
516
|
+
Текст таба 1.
|
|
517
|
+
|
|
518
|
+
* Можно использовать списки.
|
|
519
|
+
* И **другую** разметку.
|
|
520
|
+
|
|
521
|
+
- Название таба 2
|
|
522
|
+
|
|
523
|
+
Текст таба 2.
|
|
524
|
+
|
|
525
|
+
{% endlist %}
|
|
526
|
+
|
|
527
|
+
[*term1]: Some description
|
|
412
528
|
"
|
|
413
529
|
`;
|
|
414
530
|
|
|
@@ -417,7 +533,14 @@ exports[`Regression > internal 18`] = `
|
|
|
417
533
|
__system:
|
|
418
534
|
testVar: test-value
|
|
419
535
|
---
|
|
420
|
-
|
|
536
|
+
<style>
|
|
537
|
+
|
|
538
|
+
.yfm .border-yes {
|
|
539
|
+
border: 1px solid #ccc;
|
|
540
|
+
border-radius: 10px;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
</style>
|
|
421
544
|
"
|
|
422
545
|
`;
|
|
423
546
|
|
|
@@ -426,11 +549,29 @@ exports[`Regression > internal 19`] = `
|
|
|
426
549
|
__system:
|
|
427
550
|
testVar: test-value
|
|
428
551
|
---
|
|
429
|
-
|
|
552
|
+
Test
|
|
430
553
|
"
|
|
431
554
|
`;
|
|
432
555
|
|
|
433
556
|
exports[`Regression > internal 20`] = `
|
|
557
|
+
"---
|
|
558
|
+
__system:
|
|
559
|
+
testVar: test-value
|
|
560
|
+
---
|
|
561
|
+
Tool: Hammer and Laser
|
|
562
|
+
"
|
|
563
|
+
`;
|
|
564
|
+
|
|
565
|
+
exports[`Regression > internal 21`] = `
|
|
566
|
+
"---
|
|
567
|
+
__system:
|
|
568
|
+
testVar: test-value
|
|
569
|
+
---
|
|
570
|
+
Bob
|
|
571
|
+
"
|
|
572
|
+
`;
|
|
573
|
+
|
|
574
|
+
exports[`Regression > internal 22`] = `
|
|
434
575
|
"description:
|
|
435
576
|
- Some text
|
|
436
577
|
links:
|
|
@@ -448,7 +589,7 @@ meta:
|
|
|
448
589
|
"
|
|
449
590
|
`;
|
|
450
591
|
|
|
451
|
-
exports[`Regression > internal
|
|
592
|
+
exports[`Regression > internal 23`] = `
|
|
452
593
|
"---
|
|
453
594
|
metadata:
|
|
454
595
|
- name: generator
|
|
@@ -463,7 +604,7 @@ $/sqrt{3x-1}+(1+x)^2$
|
|
|
463
604
|
"
|
|
464
605
|
`;
|
|
465
606
|
|
|
466
|
-
exports[`Regression > internal
|
|
607
|
+
exports[`Regression > internal 24`] = `
|
|
467
608
|
"---
|
|
468
609
|
metadata:
|
|
469
610
|
- name: generator
|
|
@@ -480,7 +621,7 @@ vcsPath: merge/merge.md
|
|
|
480
621
|
"
|
|
481
622
|
`;
|
|
482
623
|
|
|
483
|
-
exports[`Regression > internal
|
|
624
|
+
exports[`Regression > internal 25`] = `
|
|
484
625
|
"---
|
|
485
626
|
metadata:
|
|
486
627
|
- name: generator
|
|
@@ -496,7 +637,7 @@ Should be linked in toc.yaml
|
|
|
496
637
|
"
|
|
497
638
|
`;
|
|
498
639
|
|
|
499
|
-
exports[`Regression > internal
|
|
640
|
+
exports[`Regression > internal 26`] = `
|
|
500
641
|
"items:
|
|
501
642
|
- name: Use merged
|
|
502
643
|
href: merge.md
|
|
@@ -508,7 +649,7 @@ path: merge/toc.yaml
|
|
|
508
649
|
"
|
|
509
650
|
`;
|
|
510
651
|
|
|
511
|
-
exports[`Regression > internal
|
|
652
|
+
exports[`Regression > internal 27`] = `
|
|
512
653
|
"---
|
|
513
654
|
metadata:
|
|
514
655
|
- name: generator
|
|
@@ -533,7 +674,32 @@ Some mermaid info
|
|
|
533
674
|
"
|
|
534
675
|
`;
|
|
535
676
|
|
|
536
|
-
exports[`Regression > internal
|
|
677
|
+
exports[`Regression > internal 28`] = `
|
|
678
|
+
"---
|
|
679
|
+
metadata:
|
|
680
|
+
- name: generator
|
|
681
|
+
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
682
|
+
__system:
|
|
683
|
+
testVar: test-value
|
|
684
|
+
vcsPath: mermaid.md
|
|
685
|
+
---
|
|
686
|
+
# Mermaid usage
|
|
687
|
+
|
|
688
|
+
\`\`\`mermaid
|
|
689
|
+
|
|
690
|
+
sequenceDiagram
|
|
691
|
+
rect rgba(251, 243, 232, 0.2)
|
|
692
|
+
Alice ->> Bob:
|
|
693
|
+
end
|
|
694
|
+
\`\`\`
|
|
695
|
+
|
|
696
|
+
## Mermaid info {#info}
|
|
697
|
+
|
|
698
|
+
Some mermaid info
|
|
699
|
+
"
|
|
700
|
+
`;
|
|
701
|
+
|
|
702
|
+
exports[`Regression > internal 29`] = `
|
|
537
703
|
"---
|
|
538
704
|
metadata:
|
|
539
705
|
- name: generator
|
|
@@ -827,7 +993,7 @@ vcsPath: openapi/index.md
|
|
|
827
993
|
{% endcut %}"
|
|
828
994
|
`;
|
|
829
995
|
|
|
830
|
-
exports[`Regression > internal
|
|
996
|
+
exports[`Regression > internal 30`] = `
|
|
831
997
|
"---
|
|
832
998
|
metadata:
|
|
833
999
|
- name: generator
|
|
@@ -1025,7 +1191,7 @@ _Example:_{.json-schema-reset .json-schema-example} \`example\`
|
|
|
1025
1191
|
[*Deprecated]: No longer supported, please use an alternative and newer version."
|
|
1026
1192
|
`;
|
|
1027
1193
|
|
|
1028
|
-
exports[`Regression > internal
|
|
1194
|
+
exports[`Regression > internal 31`] = `
|
|
1029
1195
|
"---
|
|
1030
1196
|
metadata:
|
|
1031
1197
|
- name: generator
|
|
@@ -1107,7 +1273,7 @@ _Example:_{.json-schema-reset .json-schema-example} \`example\`
|
|
|
1107
1273
|
[*Deprecated]: No longer supported, please use an alternative and newer version."
|
|
1108
1274
|
`;
|
|
1109
1275
|
|
|
1110
|
-
exports[`Regression > internal
|
|
1276
|
+
exports[`Regression > internal 32`] = `
|
|
1111
1277
|
"---
|
|
1112
1278
|
metadata:
|
|
1113
1279
|
- name: generator
|
|
@@ -1127,7 +1293,7 @@ vcsPath: openapi/test-controller/index.md
|
|
|
1127
1293
|
"
|
|
1128
1294
|
`;
|
|
1129
1295
|
|
|
1130
|
-
exports[`Regression > internal
|
|
1296
|
+
exports[`Regression > internal 33`] = `
|
|
1131
1297
|
"files:
|
|
1132
1298
|
- from: c.md
|
|
1133
1299
|
to: d.md
|
|
@@ -1137,7 +1303,7 @@ common:
|
|
|
1137
1303
|
"
|
|
1138
1304
|
`;
|
|
1139
1305
|
|
|
1140
|
-
exports[`Regression > internal
|
|
1306
|
+
exports[`Regression > internal 34`] = `
|
|
1141
1307
|
"---
|
|
1142
1308
|
metadata:
|
|
1143
1309
|
- name: generator
|
|
@@ -1154,7 +1320,7 @@ Item 1 text
|
|
|
1154
1320
|
"
|
|
1155
1321
|
`;
|
|
1156
1322
|
|
|
1157
|
-
exports[`Regression > internal
|
|
1323
|
+
exports[`Regression > internal 35`] = `
|
|
1158
1324
|
"items:
|
|
1159
1325
|
- name: Verbose root (index.yaml) will be transformed to index.html
|
|
1160
1326
|
href: index.yaml
|
|
@@ -1167,6 +1333,8 @@ exports[`Regression > internal 32`] = `
|
|
|
1167
1333
|
- name: Item with empty href
|
|
1168
1334
|
- name: Multitoc item
|
|
1169
1335
|
href: merge/merged.md
|
|
1336
|
+
- name: Fragments
|
|
1337
|
+
href: includes/fragments.md
|
|
1170
1338
|
- name: Included Item
|
|
1171
1339
|
href: included-item.md
|
|
1172
1340
|
- name: Named include (items is Object here - this is not an error)
|
|
@@ -1217,13 +1385,13 @@ path: toc.yaml
|
|
|
1217
1385
|
"
|
|
1218
1386
|
`;
|
|
1219
1387
|
|
|
1220
|
-
exports[`Regression > internal
|
|
1388
|
+
exports[`Regression > internal 36`] = `
|
|
1221
1389
|
"preprocess:
|
|
1222
1390
|
mergeAutotitles: true
|
|
1223
1391
|
"
|
|
1224
1392
|
`;
|
|
1225
1393
|
|
|
1226
|
-
exports[`Regression > internal
|
|
1394
|
+
exports[`Regression > internal 37`] = `
|
|
1227
1395
|
"<!DOCTYPE html>
|
|
1228
1396
|
<html lang="ru" dir="ltr">
|
|
1229
1397
|
<head>
|
|
@@ -1251,7 +1419,7 @@ exports[`Regression > internal 34`] = `
|
|
|
1251
1419
|
</html>"
|
|
1252
1420
|
`;
|
|
1253
1421
|
|
|
1254
|
-
exports[`Regression > internal
|
|
1422
|
+
exports[`Regression > internal 38`] = `
|
|
1255
1423
|
"<!DOCTYPE html>
|
|
1256
1424
|
<html lang="ru" dir="ltr">
|
|
1257
1425
|
<head>
|
|
@@ -1265,7 +1433,7 @@ exports[`Regression > internal 35`] = `
|
|
|
1265
1433
|
<body class="g-root g-root_theme_light">
|
|
1266
1434
|
<div id="root"></div>
|
|
1267
1435
|
<script type="application/json" id="diplodoc-state">
|
|
1268
|
-
{"data":{"leading":false,"html":"<p>Empty title<br />/n<a href=\\"1.html\\">Title</a></p>/n<p>Empty subtitle<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Special title<br />/n<a href=\\"1.html\\">Title</a></p>/n<p>Special subtitle<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Empty local title<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<p>Special local title<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<p>Circular title<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<h2 id=\\"header\\"><a href=\\"autotitle.html#header\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Header</span></a>Header</h2>/n<p>Content</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"autotitle.md"},"headings":[{"title":"Header","href":"autotitle.html#header","level":2}],"title":"Autotitles"},"router":{"pathname":"autotitle","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1436
|
+
{"data":{"leading":false,"html":"<p>Empty title<br />/n<a href=\\"1.html\\">Title</a></p>/n<p>Empty subtitle<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Special title<br />/n<a href=\\"1.html\\">Title</a></p>/n<p>Special subtitle<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Empty local title<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<p>Special local title<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<p>Circular title<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<p>Autotitle from include</p>/n/n<p>Include with autotitle</p>/n/n<p>link with <i class=\\"yfm yfm-term_title\\" term-key=\\":term1-1\\" role=\\"button\\" aria-controls=\\":term1-1_element\\" tabindex=\\"0\\" id=\\"term1-1-1\\">some local term1</i></p>/n<div class=\\"yfm-tabs\\" data-diplodoc-group=\\"defaultTabsGroup-2\\" data-diplodoc-variant=\\"regular\\">/n<div class=\\"yfm-tab-list\\" role=\\"tablist\\">/n<div data-diplodoc-id=\\"название-таба-1\\" data-diplodoc-key=\\"%d0%9d%d0%b0%d0%b7%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5%20%d1%82%d0%b0%d0%b1%d0%b0%201\\" class=\\"yfm-tab yfm-tab-group active\\" role=\\"tab\\" aria-controls=\\"regular-3\\" tabindex=\\"0\\" data-diplodoc-is-active=\\"true\\">Название таба 1</div>/n<div data-diplodoc-id=\\"название-таба-2\\" data-diplodoc-key=\\"%d0%9d%d0%b0%d0%b7%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5%20%d1%82%d0%b0%d0%b1%d0%b0%202\\" class=\\"yfm-tab yfm-tab-group\\" role=\\"tab\\" aria-controls=\\"regular-4\\" tabindex=\\"-1\\" data-diplodoc-is-active=\\"false\\">Название таба 2</div>/n</div>/n<div id=\\"regular-3\\" class=\\"yfm-tab-panel active\\" role=\\"tabpanel\\" data-title=\\"Название таба 1\\">/n<p>Текст таба 1.</p>/n<ul>/n<li>Можно использовать списки.</li>/n<li>И <strong>другую</strong> разметку.</li>/n</ul>/n</div>/n<div id=\\"regular-4\\" class=\\"yfm-tab-panel\\" role=\\"tabpanel\\" data-title=\\"Название таба 2\\">/n<p>Текст таба 2.</p>/n</div>/n</div>/n<p>All fragments</p>/n<h3 id=\\"f1\\"><a href=\\"autotitle.html#f1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F1</span></a>F1</h3>/n<p>Content F1</p>/n<h2 id=\\"f2\\"><a href=\\"autotitle.html#f2\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F2</span></a>F2</h2>/n<p>Content F2</p>/n<h3 id=\\"f2.1\\"><a href=\\"autotitle.html#f2.1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F2.1</span></a>F2.1</h3>/n<p>Content F2.1</p>/n<h2 id=\\"f3\\"><a href=\\"autotitle.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a><a href=\\"autotitle.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a>F3</h2>/n<p>Content F3</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n<p>Some paragraph without anchor</p>/n<p id=\\"p2\\">Some paragraph with anchor</p>/n<h2 id=\\"f4\\"><a href=\\"autotitle.html#f4\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F4</span></a>F4</h2>/n<p>Content F4<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<h3 id=\\"f4.1\\"><a href=\\"autotitle.html#f4.1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F4.1</span></a>F4.1</h3>/n<p>link with <i class=\\"yfm yfm-term_title\\" term-key=\\":term1\\" role=\\"button\\" aria-controls=\\":term1_element\\" tabindex=\\"0\\" id=\\"term1-1\\">some term1</i></p>/n<div class=\\"yfm-tabs\\" data-diplodoc-group=\\"defaultTabsGroup-1\\" data-diplodoc-variant=\\"regular\\">/n<div class=\\"yfm-tab-list\\" role=\\"tablist\\">/n<div data-diplodoc-id=\\"название-таба-1\\" data-diplodoc-key=\\"%d0%9d%d0%b0%d0%b7%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5%20%d1%82%d0%b0%d0%b1%d0%b0%201\\" class=\\"yfm-tab yfm-tab-group active\\" role=\\"tab\\" aria-controls=\\"regular-1\\" tabindex=\\"0\\" data-diplodoc-is-active=\\"true\\">Название таба 1</div>/n<div data-diplodoc-id=\\"название-таба-2\\" data-diplodoc-key=\\"%d0%9d%d0%b0%d0%b7%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5%20%d1%82%d0%b0%d0%b1%d0%b0%202\\" class=\\"yfm-tab yfm-tab-group\\" role=\\"tab\\" aria-controls=\\"regular-2\\" tabindex=\\"-1\\" data-diplodoc-is-active=\\"false\\">Название таба 2</div>/n</div>/n<div id=\\"regular-1\\" class=\\"yfm-tab-panel active\\" role=\\"tabpanel\\" data-title=\\"Название таба 1\\">/n<p>Текст таба 1.</p>/n<ul>/n<li>Можно использовать списки.</li>/n<li>И <strong>другую</strong> разметку.</li>/n</ul>/n</div>/n<div id=\\"regular-2\\" class=\\"yfm-tab-panel\\" role=\\"tabpanel\\" data-title=\\"Название таба 2\\">/n<p>Текст таба 2.</p>/n</div>/n</div>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":term1_element\\" role=\\"dialog\\"><p>Some description</p>/n</dfn><h2 id=\\"header\\"><a href=\\"autotitle.html#header\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Header</span></a>Header</h2>/n<p>Content2</p>/n<style>.yfm .border-yes {/n border: 1px solid #ccc;/n border-radius: 10px;/n}</style>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":term1-1_element\\" role=\\"dialog\\"><h2 id=\\"f31\\"><a href=\\"autotitle.html#f31\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a><a href=\\"autotitle.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a>F3</h2>/n<p>Content F3</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n<p>Some paragraph without anchor</p>/n<p id=\\"p2\\">Some paragraph with anchor</p>/n</dfn>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[],"script":[],"vcsPath":"autotitle.md"},"headings":[{"title":"F2","href":"autotitle.html#f2","level":2,"items":[{"title":"F2.1","href":"autotitle.html#f2.1","level":3}]},{"title":"F3","href":"autotitle.html#f3","level":2},{"title":"F4","href":"autotitle.html#f4","level":2,"items":[{"title":"F4.1","href":"autotitle.html#f4.1","level":3}]},{"title":"Header","href":"autotitle.html#header","level":2},{"title":"F3","href":"autotitle.html#f31","level":2}],"title":"Autotitles"},"router":{"pathname":"autotitle","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1269
1437
|
</script>
|
|
1270
1438
|
<script type="application/javascript">
|
|
1271
1439
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1279,7 +1447,7 @@ exports[`Regression > internal 35`] = `
|
|
|
1279
1447
|
</html>"
|
|
1280
1448
|
`;
|
|
1281
1449
|
|
|
1282
|
-
exports[`Regression > internal
|
|
1450
|
+
exports[`Regression > internal 39`] = `
|
|
1283
1451
|
"<!DOCTYPE html>
|
|
1284
1452
|
<html lang="ru" dir="ltr">
|
|
1285
1453
|
<head>
|
|
@@ -1307,7 +1475,7 @@ exports[`Regression > internal 36`] = `
|
|
|
1307
1475
|
</html>"
|
|
1308
1476
|
`;
|
|
1309
1477
|
|
|
1310
|
-
exports[`Regression > internal
|
|
1478
|
+
exports[`Regression > internal 40`] = `
|
|
1311
1479
|
"<!DOCTYPE html>
|
|
1312
1480
|
<html lang="ru" dir="ltr">
|
|
1313
1481
|
<head>
|
|
@@ -1335,7 +1503,7 @@ exports[`Regression > internal 37`] = `
|
|
|
1335
1503
|
</html>"
|
|
1336
1504
|
`;
|
|
1337
1505
|
|
|
1338
|
-
exports[`Regression > internal
|
|
1506
|
+
exports[`Regression > internal 41`] = `
|
|
1339
1507
|
"<!DOCTYPE html>
|
|
1340
1508
|
<html lang="ru" dir="ltr">
|
|
1341
1509
|
<head>
|
|
@@ -1363,7 +1531,7 @@ exports[`Regression > internal 38`] = `
|
|
|
1363
1531
|
</html>"
|
|
1364
1532
|
`;
|
|
1365
1533
|
|
|
1366
|
-
exports[`Regression > internal
|
|
1534
|
+
exports[`Regression > internal 42`] = `
|
|
1367
1535
|
"<!DOCTYPE html>
|
|
1368
1536
|
<html lang="ru" dir="ltr">
|
|
1369
1537
|
<head>
|
|
@@ -1391,7 +1559,7 @@ exports[`Regression > internal 39`] = `
|
|
|
1391
1559
|
</html>"
|
|
1392
1560
|
`;
|
|
1393
1561
|
|
|
1394
|
-
exports[`Regression > internal
|
|
1562
|
+
exports[`Regression > internal 43`] = `
|
|
1395
1563
|
"<!DOCTYPE html>
|
|
1396
1564
|
<html lang="ru" dir="ltr">
|
|
1397
1565
|
<head>
|
|
@@ -1419,7 +1587,7 @@ exports[`Regression > internal 40`] = `
|
|
|
1419
1587
|
</html>"
|
|
1420
1588
|
`;
|
|
1421
1589
|
|
|
1422
|
-
exports[`Regression > internal
|
|
1590
|
+
exports[`Regression > internal 44`] = `
|
|
1423
1591
|
"<!DOCTYPE html>
|
|
1424
1592
|
<html lang="ru" dir="ltr">
|
|
1425
1593
|
<head>
|
|
@@ -1447,7 +1615,7 @@ exports[`Regression > internal 41`] = `
|
|
|
1447
1615
|
</html>"
|
|
1448
1616
|
`;
|
|
1449
1617
|
|
|
1450
|
-
exports[`Regression > internal
|
|
1618
|
+
exports[`Regression > internal 45`] = `
|
|
1451
1619
|
"<!DOCTYPE html>
|
|
1452
1620
|
<html lang="ru" dir="ltr">
|
|
1453
1621
|
<head>
|
|
@@ -1475,7 +1643,7 @@ exports[`Regression > internal 42`] = `
|
|
|
1475
1643
|
</html>"
|
|
1476
1644
|
`;
|
|
1477
1645
|
|
|
1478
|
-
exports[`Regression > internal
|
|
1646
|
+
exports[`Regression > internal 46`] = `
|
|
1479
1647
|
"<!DOCTYPE html>
|
|
1480
1648
|
<html lang="ru" dir="ltr">
|
|
1481
1649
|
<head>
|
|
@@ -1503,7 +1671,7 @@ exports[`Regression > internal 43`] = `
|
|
|
1503
1671
|
</html>"
|
|
1504
1672
|
`;
|
|
1505
1673
|
|
|
1506
|
-
exports[`Regression > internal
|
|
1674
|
+
exports[`Regression > internal 47`] = `
|
|
1507
1675
|
"<!DOCTYPE html>
|
|
1508
1676
|
<html lang="ru" dir="ltr">
|
|
1509
1677
|
<head>
|
|
@@ -1531,7 +1699,7 @@ exports[`Regression > internal 44`] = `
|
|
|
1531
1699
|
</html>"
|
|
1532
1700
|
`;
|
|
1533
1701
|
|
|
1534
|
-
exports[`Regression > internal
|
|
1702
|
+
exports[`Regression > internal 48`] = `
|
|
1535
1703
|
"<!DOCTYPE html>
|
|
1536
1704
|
<html lang="ru" dir="ltr">
|
|
1537
1705
|
<head>
|
|
@@ -1559,7 +1727,7 @@ exports[`Regression > internal 45`] = `
|
|
|
1559
1727
|
</html>"
|
|
1560
1728
|
`;
|
|
1561
1729
|
|
|
1562
|
-
exports[`Regression > internal
|
|
1730
|
+
exports[`Regression > internal 49`] = `
|
|
1563
1731
|
"<!DOCTYPE html>
|
|
1564
1732
|
<html lang="ru" dir="ltr">
|
|
1565
1733
|
<head>
|
|
@@ -1573,7 +1741,7 @@ exports[`Regression > internal 46`] = `
|
|
|
1573
1741
|
<body class="g-root g-root_theme_light">
|
|
1574
1742
|
<div id="root"></div>
|
|
1575
1743
|
<script type="application/json" id="diplodoc-state">
|
|
1576
|
-
{"data":{"leading":false,"html":"<p>Text</p>/n<p>Bob</p>/n<p>Test</p>/n<h3 id=\\"f1\\"><a href=\\"includes.html#f1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F1</span></a>F1</h3>/n<p>Content F1</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n/n<p>Bob</p>/n<p><a href=\\"latex.html\\"><img src=\\"_assets/3.png\\" alt=\\"img 3\\" /></a></p>/n<p><sup><i class=\\"yfm yfm-term_title\\" term-key=\\":term\\" role=\\"button\\" aria-controls=\\":term_element\\" tabindex=\\"0\\" id=\\"vTERM-ID-2\\">?</i></sup></p>/n<p>[<i class=\\"yfm yfm-term_title\\" term-key=\\":term\\" role=\\"button\\" aria-controls=\\":term_element\\" tabindex=\\"0\\" id=\\"vTERM-ID-1\\">?</i>](http://ya.ru)</p>/n<p>Link after include<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Link after include</p>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":term_element\\" role=\\"dialog\\"><p>Test terms</p>/n</dfn>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"includes.md"},"headings":[],"title":""},"router":{"pathname":"includes","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1744
|
+
{"data":{"leading":false,"html":"<p>Text</p>/n<p>Bob</p>/n<p>Test</p>/n<h3 id=\\"f1\\"><a href=\\"includes.html#f1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F1</span></a>F1</h3>/n<p>Content F1</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n/n<p>Bob</p>/n<p><a href=\\"latex.html\\"><img src=\\"_assets/3.png\\" alt=\\"img 3\\" /></a></p>/n<p><sup><i class=\\"yfm yfm-term_title\\" term-key=\\":term\\" role=\\"button\\" aria-controls=\\":term_element\\" tabindex=\\"0\\" id=\\"vTERM-ID-2\\">?</i></sup></p>/n<p>[<i class=\\"yfm yfm-term_title\\" term-key=\\":term\\" role=\\"button\\" aria-controls=\\":term_element\\" tabindex=\\"0\\" id=\\"vTERM-ID-1\\">?</i>](http://ya.ru)</p>/n<p><i class=\\"yfm yfm-term_title\\" term-key=\\":term1\\" role=\\"button\\" aria-controls=\\":term1_element\\" tabindex=\\"0\\" id=\\"term1-2\\">Term 1</i> <i class=\\"yfm yfm-term_title\\" term-key=\\":term2\\" role=\\"button\\" aria-controls=\\":term2_element\\" tabindex=\\"0\\" id=\\"term2-1\\">Term 2</i></p>/n<p>Link after include<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Autotitle include</p>/n/n<p>Link after include</p>/n<h2 id=\\"mermaid\\"><a href=\\"includes.html#mermaid\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Mermaid</span></a>Mermaid</h2>/n<h1>Mermaid usage</h1>/n<div class=\\"mermaid\\" data-content=\\"sequenceDiagram%0A%20%20%20%20%20%20%20%20rect%20rgba(251%2C%20243%2C%20232%2C%200.2)%0A%20%20%20%20%20%20%20%20%20%20%20%20Alice%20-%3E%3E%20Bob%3A%0A%20%20%20%20%20%20%20%20end%0A\\"></div><h2 id=\\"info\\"><a href=\\"includes.html#info\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Mermaid info</span></a>Mermaid info</h2>/n<p>Some mermaid info</p>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":term_element\\" role=\\"dialog\\"><p>Test terms</p>/n</dfn><dfn class=\\"yfm yfm-term_dfn\\" id=\\":term1_element\\" role=\\"dialog\\"><h2 id=\\"f3\\"><a href=\\"includes.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a><a href=\\"includes.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a>F3</h2>/n<p>Content F3</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n<p>Some paragraph without anchor</p>/n<p id=\\"p2\\">Some paragraph with anchor</p>/n</dfn><dfn class=\\"yfm yfm-term_dfn\\" id=\\":term2_element\\" role=\\"dialog\\"><h2 id=\\"f31\\"><a href=\\"includes.html#f31\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a><a href=\\"includes.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a><a href=\\"includes.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a>F3</h2>/n<p>Content F3</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n<p>Some paragraph without anchor</p>/n<p id=\\"p2\\">Some paragraph with anchor</p>/n</dfn>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[],"script":["_bundle/mermaid-extension.js"],"vcsPath":"includes.md"},"headings":[{"title":"Mermaid","href":"includes.html#mermaid","level":2},{"title":"Mermaid info","href":"includes.html#info","level":2},{"title":"F3","href":"includes.html#f3","level":2},{"title":"F3","href":"includes.html#f31","level":2}],"title":""},"router":{"pathname":"includes","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1577
1745
|
</script>
|
|
1578
1746
|
<script type="application/javascript">
|
|
1579
1747
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1587,7 +1755,35 @@ exports[`Regression > internal 46`] = `
|
|
|
1587
1755
|
</html>"
|
|
1588
1756
|
`;
|
|
1589
1757
|
|
|
1590
|
-
exports[`Regression > internal
|
|
1758
|
+
exports[`Regression > internal 50`] = `
|
|
1759
|
+
"<!DOCTYPE html>
|
|
1760
|
+
<html lang="ru" dir="ltr">
|
|
1761
|
+
<head>
|
|
1762
|
+
<meta charset="utf-8">
|
|
1763
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
1764
|
+
<base href="../" />
|
|
1765
|
+
<title></title>
|
|
1766
|
+
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1767
|
+
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1768
|
+
</head>
|
|
1769
|
+
<body class="g-root g-root_theme_light">
|
|
1770
|
+
<div id="root"></div>
|
|
1771
|
+
<script type="application/json" id="diplodoc-state">
|
|
1772
|
+
{"data":{"leading":false,"html":"<h3 id=\\"f1\\"><a href=\\"includes/fragments.html#f1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F1</span></a>F1</h3>/n<p>Content F1</p>/n<h2 id=\\"f2\\"><a href=\\"includes/fragments.html#f2\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F2</span></a>F2</h2>/n<p>Content F2</p>/n<h3 id=\\"f2.1\\"><a href=\\"includes/fragments.html#f2.1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F2.1</span></a>F2.1</h3>/n<p>Content F2.1</p>/n<h2 id=\\"f3\\"><a href=\\"includes/fragments.html#f3\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F3</span></a>F3</h2>/n<p>Content F3</p>/n<p id=\\"p1\\">Some paragraph with anchor</p>/n<p>Some paragraph without anchor</p>/n<p id=\\"p2\\">Some paragraph with anchor</p>/n<h2 id=\\"f4\\"><a href=\\"includes/fragments.html#f4\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F4</span></a>F4</h2>/n<p>Content F4<br />/n<a href=\\"autotitle.html#header\\">Header</a></p>/n<h3 id=\\"f4.1\\"><a href=\\"includes/fragments.html#f4.1\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">F4.1</span></a>F4.1</h3>/n<p>link with <i class=\\"yfm yfm-term_title\\" term-key=\\":term1\\" role=\\"button\\" aria-controls=\\":term1_element\\" tabindex=\\"0\\" id=\\"term1-1\\">some term1</i></p>/n<div class=\\"yfm-tabs\\" data-diplodoc-group=\\"defaultTabsGroup-1\\" data-diplodoc-variant=\\"regular\\">/n<div class=\\"yfm-tab-list\\" role=\\"tablist\\">/n<div data-diplodoc-id=\\"название-таба-1\\" data-diplodoc-key=\\"%d0%9d%d0%b0%d0%b7%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5%20%d1%82%d0%b0%d0%b1%d0%b0%201\\" class=\\"yfm-tab yfm-tab-group active\\" role=\\"tab\\" aria-controls=\\"regular-1\\" tabindex=\\"0\\" data-diplodoc-is-active=\\"true\\">Название таба 1</div>/n<div data-diplodoc-id=\\"название-таба-2\\" data-diplodoc-key=\\"%d0%9d%d0%b0%d0%b7%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5%20%d1%82%d0%b0%d0%b1%d0%b0%202\\" class=\\"yfm-tab yfm-tab-group\\" role=\\"tab\\" aria-controls=\\"regular-2\\" tabindex=\\"-1\\" data-diplodoc-is-active=\\"false\\">Название таба 2</div>/n</div>/n<div id=\\"regular-1\\" class=\\"yfm-tab-panel active\\" role=\\"tabpanel\\" data-title=\\"Название таба 1\\">/n<p>Текст таба 1.</p>/n<ul>/n<li>Можно использовать списки.</li>/n<li>И <strong>другую</strong> разметку.</li>/n</ul>/n</div>/n<div id=\\"regular-2\\" class=\\"yfm-tab-panel\\" role=\\"tabpanel\\" data-title=\\"Название таба 2\\">/n<p>Текст таба 2.</p>/n</div>/n</div>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":term1_element\\" role=\\"dialog\\"><p>Some description</p>/n</dfn>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[],"script":[],"vcsPath":"includes/fragments.md"},"headings":[{"title":"F2","href":"includes/fragments.html#f2","level":2,"items":[{"title":"F2.1","href":"includes/fragments.html#f2.1","level":3}]},{"title":"F3","href":"includes/fragments.html#f3","level":2},{"title":"F4","href":"includes/fragments.html#f4","level":2,"items":[{"title":"F4.1","href":"includes/fragments.html#f4.1","level":3}]}],"title":""},"router":{"pathname":"includes/fragments","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1773
|
+
</script>
|
|
1774
|
+
<script type="application/javascript">
|
|
1775
|
+
const data = document.querySelector('script#diplodoc-state');
|
|
1776
|
+
window.__DATA__ = JSON.parse((function unescape(string) {
|
|
1777
|
+
return string.replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&");
|
|
1778
|
+
})(data.innerText));
|
|
1779
|
+
window.STATIC_CONTENT = false;
|
|
1780
|
+
</script>
|
|
1781
|
+
<script type="application/javascript" defer src="toc.js"></script>
|
|
1782
|
+
</body>
|
|
1783
|
+
</html>"
|
|
1784
|
+
`;
|
|
1785
|
+
|
|
1786
|
+
exports[`Regression > internal 51`] = `
|
|
1591
1787
|
"<!DOCTYPE html>
|
|
1592
1788
|
<html lang="ru" dir="ltr">
|
|
1593
1789
|
<head>
|
|
@@ -1615,7 +1811,7 @@ exports[`Regression > internal 47`] = `
|
|
|
1615
1811
|
</html>"
|
|
1616
1812
|
`;
|
|
1617
1813
|
|
|
1618
|
-
exports[`Regression > internal
|
|
1814
|
+
exports[`Regression > internal 52`] = `
|
|
1619
1815
|
"<!DOCTYPE html>
|
|
1620
1816
|
<html lang="ru" dir="ltr">
|
|
1621
1817
|
<head>
|
|
@@ -1643,7 +1839,7 @@ exports[`Regression > internal 48`] = `
|
|
|
1643
1839
|
</html>"
|
|
1644
1840
|
`;
|
|
1645
1841
|
|
|
1646
|
-
exports[`Regression > internal
|
|
1842
|
+
exports[`Regression > internal 53`] = `
|
|
1647
1843
|
"<!DOCTYPE html>
|
|
1648
1844
|
<html lang="ru" dir="ltr">
|
|
1649
1845
|
<head>
|
|
@@ -1671,7 +1867,7 @@ exports[`Regression > internal 49`] = `
|
|
|
1671
1867
|
</html>"
|
|
1672
1868
|
`;
|
|
1673
1869
|
|
|
1674
|
-
exports[`Regression > internal
|
|
1870
|
+
exports[`Regression > internal 54`] = `
|
|
1675
1871
|
"<!DOCTYPE html>
|
|
1676
1872
|
<html lang="ru" dir="ltr">
|
|
1677
1873
|
<head>
|
|
@@ -1699,9 +1895,9 @@ exports[`Regression > internal 50`] = `
|
|
|
1699
1895
|
</html>"
|
|
1700
1896
|
`;
|
|
1701
1897
|
|
|
1702
|
-
exports[`Regression > internal
|
|
1898
|
+
exports[`Regression > internal 55`] = `"window.__DATA__.data.toc = {"items":[{"name":"Use merged","href":"merge/merge.html","id":"UUID"},{"name":"Multitoc item","href":"1.html","id":"UUID"},{"name":"Merged item","href":"merge/merged.html","id":"UUID"}],"path":"merge/toc.yaml","id":"UUID"};"`;
|
|
1703
1899
|
|
|
1704
|
-
exports[`Regression > internal
|
|
1900
|
+
exports[`Regression > internal 56`] = `
|
|
1705
1901
|
"<!DOCTYPE html>
|
|
1706
1902
|
<html lang="ru" dir="ltr">
|
|
1707
1903
|
<head>
|
|
@@ -1729,7 +1925,7 @@ exports[`Regression > internal 52`] = `
|
|
|
1729
1925
|
</html>"
|
|
1730
1926
|
`;
|
|
1731
1927
|
|
|
1732
|
-
exports[`Regression > internal
|
|
1928
|
+
exports[`Regression > internal 57`] = `
|
|
1733
1929
|
"<!DOCTYPE html>
|
|
1734
1930
|
<html lang="ru" dir="ltr">
|
|
1735
1931
|
<head>
|
|
@@ -1739,12 +1935,11 @@ exports[`Regression > internal 53`] = `
|
|
|
1739
1935
|
<title></title>
|
|
1740
1936
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1741
1937
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1742
|
-
<link type="text/css" rel="stylesheet" href="_assets/cut-extension.css"/>
|
|
1743
1938
|
</head>
|
|
1744
1939
|
<body class="g-root g-root_theme_light">
|
|
1745
1940
|
<div id="root"></div>
|
|
1746
1941
|
<script type="application/json" id="diplodoc-state">
|
|
1747
|
-
{"data":{"leading":false,"html":"<h1>OpenAPI definition</h1>/n<p><samp>version: v0</samp></p>/n<h2 id=\\"sections\\"><a href=\\"openapi/index.html#sections\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Sections</span></a>Sections</h2>/n<ul>/n<li><a href=\\"openapi/test-controller/index.html\\">test-controller</a></li>/n</ul>/n<h2 id=\\"specification\\"><a href=\\"openapi/index.html#specification\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Specification</span></a>Specification</h2>/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\">Open API</summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs text\\">{/n \\"openapi\\": \\"3.0.1\\",/n \\"info\\": {/n \\"title\\": \\"OpenAPI definition\\",/n \\"version\\": \\"v0\\"/n },/n \\"servers\\": [/n {/n \\"url\\": \\"http://localhost:8080\\",/n \\"description\\": \\"Generated server url\\"/n }/n ],/n \\"paths\\": {/n \\"/test\\": {/n \\"get\\": {/n \\"tags\\": [/n \\"test-controller\\"/n ],/n \\"summary\\": \\"Simple get operation. тест новой верстки 3\\",/n \\"description\\": \\"Defines a simple get operation with no inputs and a complex\\",/n \\"operationId\\": \\"getWithPayloadResponse\\",/n \\"responses\\": {/n \\"200\\": {/n \\"description\\": \\"200!!!!\\",/n \\"content\\": {/n \\"application/json\\": {/n \\"schema\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"A\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n }/n }/n }/n },/n \\"/hidden-test\\": {/n \\"get\\": {/n \\"tags\\": [/n \\"test-controller\\"/n ],/n \\"summary\\": \\"Test x-hidden attribute\\",/n \\"description\\": \\"Test various x-hidden scenarios\\",/n \\"operationId\\": \\"getHiddenTest\\",/n \\"responses\\": {/n \\"200\\": {/n \\"description\\": \\"Response with hidden fields\\",/n \\"content\\": {/n \\"application/json\\": {/n \\"schema\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Response object with various hidden field scenarios\\",/n \\"properties\\": {/n \\"visibleField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be visible\\"/n },/n \\"directlyHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden (direct x-hidden)\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"This entire object should be hidden\\",/n \\"x-hidden\\": true,/n \\"properties\\": {/n \\"secret\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"nestedObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Object with hidden properties\\",/n \\"properties\\": {/n \\"visibleNested\\": {/n \\"type\\": \\"string\\"/n },/n \\"hiddenNested\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenInNested\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n }/n },/n \\"arrayWithHiddenItems\\": {/n \\"type\\": \\"array\\",/n \\"description\\": \\"Array with hidden item schema\\",/n \\"items\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n },/n \\"mixedVisibility\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"field1\\": {/n \\"type\\": \\"string\\"/n },/n \\"field2\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"field3\\": {/n \\"type\\": \\"string\\"/n },/n \\"field4\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"field5\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n }/n }/n }/n }/n }/n }/n },/n \\"components\\": {/n \\"schemas\\": {/n \\"RecurceTop\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"A\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"RecurceMiddle\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"B\\": {/n \\"type\\": \\"array\\",/n \\"items\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"A\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n },/n \\"HiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"HiddenObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"This entire object should be hidden\\",/n \\"x-hidden\\": true,/n \\"properties\\": {/n \\"secret\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"HiddenTestResponse\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Response object with various hidden field scenarios\\",/n \\"properties\\": {/n \\"visibleField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be visible\\"/n },/n \\"directlyHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden (direct x-hidden)\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"This entire object should be hidden\\",/n \\"x-hidden\\": true,/n \\"properties\\": {/n \\"secret\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"nestedObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Object with hidden properties\\",/n \\"properties\\": {/n \\"visibleNested\\": {/n \\"type\\": \\"string\\"/n },/n \\"hiddenNested\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenInNested\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n }/n },/n \\"arrayWithHiddenItems\\": {/n \\"type\\": \\"array\\",/n \\"description\\": \\"Array with hidden item schema\\",/n \\"items\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n },/n \\"mixedVisibility\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"field1\\": {/n \\"type\\": \\"string\\"/n },/n \\"field2\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"field3\\": {/n \\"type\\": \\"string\\"/n },/n \\"field4\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"field5\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n }/n }/n}/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"25\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-25\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-25\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-25.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_assets/cut-extension.css"],"script":["_assets/cut-extension.js"],"vcsPath":"openapi/index.md"},"headings":[{"title":"Sections","href":"openapi/index.html#sections","level":2},{"title":"Specification","href":"openapi/index.html#specification","level":2}],"title":""},"router":{"pathname":"openapi/index","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1942
|
+
{"data":{"leading":false,"html":"<h1>OpenAPI definition</h1>/n<p><samp>version: v0</samp></p>/n<h2 id=\\"sections\\"><a href=\\"openapi/index.html#sections\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Sections</span></a>Sections</h2>/n<ul>/n<li><a href=\\"openapi/test-controller/index.html\\">test-controller</a></li>/n</ul>/n<h2 id=\\"specification\\"><a href=\\"openapi/index.html#specification\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Specification</span></a>Specification</h2>/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\">Open API</summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs text\\">{/n \\"openapi\\": \\"3.0.1\\",/n \\"info\\": {/n \\"title\\": \\"OpenAPI definition\\",/n \\"version\\": \\"v0\\"/n },/n \\"servers\\": [/n {/n \\"url\\": \\"http://localhost:8080\\",/n \\"description\\": \\"Generated server url\\"/n }/n ],/n \\"paths\\": {/n \\"/test\\": {/n \\"get\\": {/n \\"tags\\": [/n \\"test-controller\\"/n ],/n \\"summary\\": \\"Simple get operation. тест новой верстки 3\\",/n \\"description\\": \\"Defines a simple get operation with no inputs and a complex\\",/n \\"operationId\\": \\"getWithPayloadResponse\\",/n \\"responses\\": {/n \\"200\\": {/n \\"description\\": \\"200!!!!\\",/n \\"content\\": {/n \\"application/json\\": {/n \\"schema\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"A\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n }/n }/n }/n },/n \\"/hidden-test\\": {/n \\"get\\": {/n \\"tags\\": [/n \\"test-controller\\"/n ],/n \\"summary\\": \\"Test x-hidden attribute\\",/n \\"description\\": \\"Test various x-hidden scenarios\\",/n \\"operationId\\": \\"getHiddenTest\\",/n \\"responses\\": {/n \\"200\\": {/n \\"description\\": \\"Response with hidden fields\\",/n \\"content\\": {/n \\"application/json\\": {/n \\"schema\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Response object with various hidden field scenarios\\",/n \\"properties\\": {/n \\"visibleField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be visible\\"/n },/n \\"directlyHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden (direct x-hidden)\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"This entire object should be hidden\\",/n \\"x-hidden\\": true,/n \\"properties\\": {/n \\"secret\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"nestedObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Object with hidden properties\\",/n \\"properties\\": {/n \\"visibleNested\\": {/n \\"type\\": \\"string\\"/n },/n \\"hiddenNested\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenInNested\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n }/n },/n \\"arrayWithHiddenItems\\": {/n \\"type\\": \\"array\\",/n \\"description\\": \\"Array with hidden item schema\\",/n \\"items\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n },/n \\"mixedVisibility\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"field1\\": {/n \\"type\\": \\"string\\"/n },/n \\"field2\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"field3\\": {/n \\"type\\": \\"string\\"/n },/n \\"field4\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"field5\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n }/n }/n }/n }/n }/n }/n },/n \\"components\\": {/n \\"schemas\\": {/n \\"RecurceTop\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"A\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"RecurceMiddle\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"B\\": {/n \\"type\\": \\"array\\",/n \\"items\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"A\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n },/n \\"HiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"HiddenObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"This entire object should be hidden\\",/n \\"x-hidden\\": true,/n \\"properties\\": {/n \\"secret\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"HiddenTestResponse\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Response object with various hidden field scenarios\\",/n \\"properties\\": {/n \\"visibleField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be visible\\"/n },/n \\"directlyHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden (direct x-hidden)\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenField\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"This entire object should be hidden\\",/n \\"x-hidden\\": true,/n \\"properties\\": {/n \\"secret\\": {/n \\"type\\": \\"string\\"/n }/n }/n },/n \\"nestedObject\\": {/n \\"type\\": \\"object\\",/n \\"description\\": \\"Object with hidden properties\\",/n \\"properties\\": {/n \\"visibleNested\\": {/n \\"type\\": \\"string\\"/n },/n \\"hiddenNested\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"refToHiddenInNested\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n }/n },/n \\"arrayWithHiddenItems\\": {/n \\"type\\": \\"array\\",/n \\"description\\": \\"Array with hidden item schema\\",/n \\"items\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n }/n },/n \\"mixedVisibility\\": {/n \\"type\\": \\"object\\",/n \\"properties\\": {/n \\"field1\\": {/n \\"type\\": \\"string\\"/n },/n \\"field2\\": {/n \\"type\\": \\"string\\",/n \\"description\\": \\"This field should be hidden\\",/n \\"x-hidden\\": true/n },/n \\"field3\\": {/n \\"type\\": \\"string\\"/n },/n \\"field4\\": {/n \\"type\\": \\"string\\",/n \\"x-hidden\\": true/n },/n \\"field5\\": {/n \\"type\\": \\"string\\"/n }/n }/n }/n }/n }/n }/n }/n}/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"25\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-25\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-25\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-25.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[],"script":[],"vcsPath":"openapi/index.md"},"headings":[{"title":"Sections","href":"openapi/index.html#sections","level":2},{"title":"Specification","href":"openapi/index.html#specification","level":2}],"title":""},"router":{"pathname":"openapi/index","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1748
1943
|
</script>
|
|
1749
1944
|
<script type="application/javascript">
|
|
1750
1945
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1754,12 +1949,11 @@ exports[`Regression > internal 53`] = `
|
|
|
1754
1949
|
window.STATIC_CONTENT = false;
|
|
1755
1950
|
</script>
|
|
1756
1951
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1757
|
-
<script type="application/javascript" defer src="_assets/cut-extension.js"></script>
|
|
1758
1952
|
</body>
|
|
1759
1953
|
</html>"
|
|
1760
1954
|
`;
|
|
1761
1955
|
|
|
1762
|
-
exports[`Regression > internal
|
|
1956
|
+
exports[`Regression > internal 58`] = `
|
|
1763
1957
|
"<!DOCTYPE html>
|
|
1764
1958
|
<html lang="ru" dir="ltr">
|
|
1765
1959
|
<head>
|
|
@@ -1769,12 +1963,11 @@ exports[`Regression > internal 54`] = `
|
|
|
1769
1963
|
<title></title>
|
|
1770
1964
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1771
1965
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1772
|
-
<link type="text/css" rel="stylesheet" href="_assets/cut-extension.css"/>
|
|
1773
1966
|
</head>
|
|
1774
1967
|
<body class="g-root g-root_theme_light">
|
|
1775
1968
|
<div id="root"></div>
|
|
1776
1969
|
<script type="application/json" id="diplodoc-state">
|
|
1777
|
-
{"data":{"leading":false,"html":"<div class=\\"openapi\\">/n<h1>Test x-hidden attribute</h1>/n/n<p>Test various x-hidden scenarios</p>/n<h2 id=\\"request\\"><a href=\\"openapi/test-controller/getHiddenTest.html#request\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Request</span></a>Request</h2>/n<div class=\\"openapi__requests\\">/n<div class=\\"openapi__request__wrapper\\" style=\\"--method:var(--dc-openapi-methods-get);margin-bottom:12px\\">/n<div class=\\"openapi__request\\">/n<p class=\\"openapi__method\\">GET</p>/n/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs text\\">http://localhost:8080/hidden-test/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"17\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-17\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-17\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-17.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div>/n<p>Generated server url</p>/n</div>/n</div>/n<h2 id=\\"responses\\"><a href=\\"openapi/test-controller/getHiddenTest.html#responses\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Responses</span></a>Responses</h2>/n<div class=\\"openapi__response__code__200\\">/n<h2 id=\\"200-ok\\"><a href=\\"openapi/test-controller/getHiddenTest.html#200-ok\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">200 OK</span></a>200 OK</h2>/n<p>Response with hidden fields</p>/n<div class=\\"openapi-entity\\">/n<h3 id=\\"body\\"><a href=\\"openapi/test-controller/getHiddenTest.html#body\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Body</span></a>Body</h3>/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\">application/json</summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"visibleField\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"nestedObject\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"visibleNested\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n <span class=\\"hljs-punctuation\\">}</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"arrayWithHiddenItems\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-punctuation\\">[</span>/n <span class=\\"hljs-string\\">\\"example\\"</span>/n <span class=\\"hljs-punctuation\\">]</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"mixedVisibility\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"field1\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field3\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field5\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n <span class=\\"hljs-punctuation\\">}</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"43\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-43\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-43\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-43.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td>/n<p><strong>Name</strong></p>/n</td>/n<td>/n<p><strong>Description</strong></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">arrayWithHiddenItems</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: <a href=\\"openapi/test-controller/getHiddenTest.html#entity-HiddenField\\">HiddenField</a>[]</p>/n<p>Array with hidden item schema</p>/n<details class=\\"yfm-cut json-schema-example\\"><summary class=\\"yfm-cut-title\\"><strong>Example</strong></summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">[</span>/n <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">]</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"78\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-78\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-78\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-78.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details></td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">mixedVisibility</em></p>/n</td>/n<td class=\\"table-cell\\">/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\"><strong>Type</strong>: object</summary><div class=\\"yfm-cut-content\\"><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">field1</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-1\\">example</code></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">field3</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-2\\">example</code></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">field5</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-3\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div></details><details class=\\"yfm-cut json-schema-example\\"><summary class=\\"yfm-cut-title\\"><strong>Example</strong></summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"field1\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field3\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field5\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"151\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-151\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-151\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-151.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details></td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">nestedObject</em></p>/n</td>/n<td class=\\"table-cell\\">/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\"><strong>Type</strong>: object</summary><div class=\\"yfm-cut-content\\"><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">visibleNested</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-4\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div></details><p>Object with hidden properties</p>/n<details class=\\"yfm-cut json-schema-example\\"><summary class=\\"yfm-cut-title\\"><strong>Example</strong></summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"visibleNested\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"197\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-197\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-197\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-197.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details></td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">visibleField</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p>This field should be visible</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-5\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div>/n</div>/n</div>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_assets/cut-extension.css"],"script":["_assets/cut-extension.js"],"vcsPath":"openapi/test-controller/getHiddenTest.md"},"headings":[{"title":"Request","href":"openapi/test-controller/getHiddenTest.html#request","level":2},{"title":"Responses","href":"openapi/test-controller/getHiddenTest.html#responses","level":2},{"title":"200 OK","href":"openapi/test-controller/getHiddenTest.html#200-ok","level":2,"items":[{"title":"Body","href":"openapi/test-controller/getHiddenTest.html#body","level":3}]}],"title":""},"router":{"pathname":"openapi/test-controller/getHiddenTest","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1970
|
+
{"data":{"leading":false,"html":"<div class=\\"openapi\\">/n<h1>Test x-hidden attribute</h1>/n/n<p>Test various x-hidden scenarios</p>/n<h2 id=\\"request\\"><a href=\\"openapi/test-controller/getHiddenTest.html#request\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Request</span></a>Request</h2>/n<div class=\\"openapi__requests\\">/n<div class=\\"openapi__request__wrapper\\" style=\\"--method:var(--dc-openapi-methods-get);margin-bottom:12px\\">/n<div class=\\"openapi__request\\">/n<p class=\\"openapi__method\\">GET</p>/n/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs text\\">http://localhost:8080/hidden-test/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"17\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-17\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-17\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-17.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div>/n<p>Generated server url</p>/n</div>/n</div>/n<h2 id=\\"responses\\"><a href=\\"openapi/test-controller/getHiddenTest.html#responses\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Responses</span></a>Responses</h2>/n<div class=\\"openapi__response__code__200\\">/n<h2 id=\\"200-ok\\"><a href=\\"openapi/test-controller/getHiddenTest.html#200-ok\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">200 OK</span></a>200 OK</h2>/n<p>Response with hidden fields</p>/n<div class=\\"openapi-entity\\">/n<h3 id=\\"body\\"><a href=\\"openapi/test-controller/getHiddenTest.html#body\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Body</span></a>Body</h3>/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\">application/json</summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"visibleField\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"nestedObject\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"visibleNested\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n <span class=\\"hljs-punctuation\\">}</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"arrayWithHiddenItems\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-punctuation\\">[</span>/n <span class=\\"hljs-string\\">\\"example\\"</span>/n <span class=\\"hljs-punctuation\\">]</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"mixedVisibility\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"field1\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field3\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field5\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n <span class=\\"hljs-punctuation\\">}</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"43\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-43\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-43\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-43.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td>/n<p><strong>Name</strong></p>/n</td>/n<td>/n<p><strong>Description</strong></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">arrayWithHiddenItems</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: <a href=\\"openapi/test-controller/getHiddenTest.html#entity-HiddenField\\">HiddenField</a>[]</p>/n<p>Array with hidden item schema</p>/n<details class=\\"yfm-cut json-schema-example\\"><summary class=\\"yfm-cut-title\\"><strong>Example</strong></summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">[</span>/n <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">]</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"78\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-78\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-78\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-78.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details></td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">mixedVisibility</em></p>/n</td>/n<td class=\\"table-cell\\">/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\"><strong>Type</strong>: object</summary><div class=\\"yfm-cut-content\\"><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">field1</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-1\\">example</code></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">field3</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-2\\">example</code></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">field5</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-3\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div></details><details class=\\"yfm-cut json-schema-example\\"><summary class=\\"yfm-cut-title\\"><strong>Example</strong></summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"field1\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field3\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span><span class=\\"hljs-punctuation\\">,</span>/n <span class=\\"hljs-attr\\">\\"field5\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"151\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-151\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-151\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-151.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details></td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">nestedObject</em></p>/n</td>/n<td class=\\"table-cell\\">/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\"><strong>Type</strong>: object</summary><div class=\\"yfm-cut-content\\"><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">visibleNested</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-4\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div></details><p>Object with hidden properties</p>/n<details class=\\"yfm-cut json-schema-example\\"><summary class=\\"yfm-cut-title\\"><strong>Example</strong></summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"visibleNested\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"197\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-197\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-197\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-197.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details></td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">visibleField</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p>This field should be visible</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-5\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div>/n</div>/n</div>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[],"script":[],"vcsPath":"openapi/test-controller/getHiddenTest.md"},"headings":[{"title":"Request","href":"openapi/test-controller/getHiddenTest.html#request","level":2},{"title":"Responses","href":"openapi/test-controller/getHiddenTest.html#responses","level":2},{"title":"200 OK","href":"openapi/test-controller/getHiddenTest.html#200-ok","level":2,"items":[{"title":"Body","href":"openapi/test-controller/getHiddenTest.html#body","level":3}]}],"title":""},"router":{"pathname":"openapi/test-controller/getHiddenTest","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1778
1971
|
</script>
|
|
1779
1972
|
<script type="application/javascript">
|
|
1780
1973
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1784,12 +1977,11 @@ exports[`Regression > internal 54`] = `
|
|
|
1784
1977
|
window.STATIC_CONTENT = false;
|
|
1785
1978
|
</script>
|
|
1786
1979
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1787
|
-
<script type="application/javascript" defer src="_assets/cut-extension.js"></script>
|
|
1788
1980
|
</body>
|
|
1789
1981
|
</html>"
|
|
1790
1982
|
`;
|
|
1791
1983
|
|
|
1792
|
-
exports[`Regression > internal
|
|
1984
|
+
exports[`Regression > internal 59`] = `
|
|
1793
1985
|
"<!DOCTYPE html>
|
|
1794
1986
|
<html lang="ru" dir="ltr">
|
|
1795
1987
|
<head>
|
|
@@ -1799,12 +1991,11 @@ exports[`Regression > internal 55`] = `
|
|
|
1799
1991
|
<title></title>
|
|
1800
1992
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1801
1993
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1802
|
-
<link type="text/css" rel="stylesheet" href="_assets/cut-extension.css"/>
|
|
1803
1994
|
</head>
|
|
1804
1995
|
<body class="g-root g-root_theme_light">
|
|
1805
1996
|
<div id="root"></div>
|
|
1806
1997
|
<script type="application/json" id="diplodoc-state">
|
|
1807
|
-
{"data":{"leading":false,"html":"<div class=\\"openapi\\">/n<h1>Simple get operation. тест новой верстки 3</h1>/n/n<p>Defines a simple get operation with no inputs and a complex</p>/n<h2 id=\\"request\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#request\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Request</span></a>Request</h2>/n<div class=\\"openapi__requests\\">/n<div class=\\"openapi__request__wrapper\\" style=\\"--method:var(--dc-openapi-methods-get);margin-bottom:12px\\">/n<div class=\\"openapi__request\\">/n<p class=\\"openapi__method\\">GET</p>/n/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs text\\">http://localhost:8080/test/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"17\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-17\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-17\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-17.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div>/n<p>Generated server url</p>/n</div>/n</div>/n<h2 id=\\"responses\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#responses\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Responses</span></a>Responses</h2>/n<div class=\\"openapi__response__code__200\\">/n<h2 id=\\"200-ok\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#200-ok\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">200 OK</span></a>200 OK</h2>/n<p>200!!!!</p>/n<div class=\\"openapi-entity\\">/n<h3 id=\\"body\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#body\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Body</span></a>Body</h3>/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\">application/json</summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"A\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"43\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-43\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-43\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-43.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td>/n<p><strong>Name</strong></p>/n</td>/n<td>/n<p><strong>Description</strong></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">A</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-1\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div>/n</div>/n</div>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[
|
|
1998
|
+
{"data":{"leading":false,"html":"<div class=\\"openapi\\">/n<h1>Simple get operation. тест новой верстки 3</h1>/n/n<p>Defines a simple get operation with no inputs and a complex</p>/n<h2 id=\\"request\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#request\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Request</span></a>Request</h2>/n<div class=\\"openapi__requests\\">/n<div class=\\"openapi__request__wrapper\\" style=\\"--method:var(--dc-openapi-methods-get);margin-bottom:12px\\">/n<div class=\\"openapi__request\\">/n<p class=\\"openapi__method\\">GET</p>/n/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs text\\">http://localhost:8080/test/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"17\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-17\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-17\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-17.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div>/n<p>Generated server url</p>/n</div>/n</div>/n<h2 id=\\"responses\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#responses\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Responses</span></a>Responses</h2>/n<div class=\\"openapi__response__code__200\\">/n<h2 id=\\"200-ok\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#200-ok\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">200 OK</span></a>200 OK</h2>/n<p>200!!!!</p>/n<div class=\\"openapi-entity\\">/n<h3 id=\\"body\\"><a href=\\"openapi/test-controller/getWithPayloadResponse.html#body\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Body</span></a>Body</h3>/n<details class=\\"yfm-cut\\"><summary class=\\"yfm-cut-title\\">application/json</summary><div class=\\"yfm-cut-content\\">/n <div class=\\"yfm-code-floating-container\\">/n <pre><code class=\\"hljs json\\"><span class=\\"hljs-punctuation\\">{</span>/n <span class=\\"hljs-attr\\">\\"A\\"</span><span class=\\"hljs-punctuation\\">:</span> <span class=\\"hljs-string\\">\\"example\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <div class=\\"yfm-code-floating\\">/n /n <button role=\\"button\\" class=\\"yfm-code-button yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-code-icon yfm-clipboard-icon\\" data-animation=\\"43\\">/n <path fill=\\"currentColor\\" d=\\"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\\"></path>/n <path stroke=\\"currentColor\\" fill=\\"transparent\\" stroke-width=\\"1.5\\" d=\\"M9.5 13l3 3l5 -5\\" visibility=\\"hidden\\">/n <animate id=\\"visibileAnimation-43\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-43\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-43.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n </div>/n</div></details><table class=\\"json-schema-properties\\">/n<tbody>/n<tr>/n<td>/n<p><strong>Name</strong></p>/n</td>/n<td>/n<p><strong>Description</strong></p>/n</td>/n</tr>/n<tr>/n<td class=\\"table-cell\\">/n<p><em class=\\"json-schema-reset json-schema-property\\">A</em></p>/n</td>/n<td class=\\"table-cell\\">/n<p><strong>Type</strong>: string</p>/n<p><em class=\\"json-schema-reset json-schema-example\\">Example:</em> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id=\\"inline-code-id-1\\">example</code></p>/n</td>/n</tr>/n</tbody>/n</table>/n</div>/n</div>/n</div>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":[],"script":[],"vcsPath":"openapi/test-controller/getWithPayloadResponse.md"},"headings":[{"title":"Request","href":"openapi/test-controller/getWithPayloadResponse.html#request","level":2},{"title":"Responses","href":"openapi/test-controller/getWithPayloadResponse.html#responses","level":2},{"title":"200 OK","href":"openapi/test-controller/getWithPayloadResponse.html#200-ok","level":2,"items":[{"title":"Body","href":"openapi/test-controller/getWithPayloadResponse.html#body","level":3}]}],"title":""},"router":{"pathname":"openapi/test-controller/getWithPayloadResponse","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1808
1999
|
</script>
|
|
1809
2000
|
<script type="application/javascript">
|
|
1810
2001
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1814,12 +2005,11 @@ exports[`Regression > internal 55`] = `
|
|
|
1814
2005
|
window.STATIC_CONTENT = false;
|
|
1815
2006
|
</script>
|
|
1816
2007
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1817
|
-
<script type="application/javascript" defer src="_assets/cut-extension.js"></script>
|
|
1818
2008
|
</body>
|
|
1819
2009
|
</html>"
|
|
1820
2010
|
`;
|
|
1821
2011
|
|
|
1822
|
-
exports[`Regression > internal
|
|
2012
|
+
exports[`Regression > internal 60`] = `
|
|
1823
2013
|
"<!DOCTYPE html>
|
|
1824
2014
|
<html lang="ru" dir="ltr">
|
|
1825
2015
|
<head>
|
|
@@ -1847,7 +2037,7 @@ exports[`Regression > internal 56`] = `
|
|
|
1847
2037
|
</html>"
|
|
1848
2038
|
`;
|
|
1849
2039
|
|
|
1850
|
-
exports[`Regression > internal
|
|
2040
|
+
exports[`Regression > internal 61`] = `
|
|
1851
2041
|
"<!DOCTYPE html>
|
|
1852
2042
|
<html lang="ru" dir="ltr">
|
|
1853
2043
|
<head>
|
|
@@ -1875,4 +2065,4 @@ exports[`Regression > internal 57`] = `
|
|
|
1875
2065
|
</html>"
|
|
1876
2066
|
`;
|
|
1877
2067
|
|
|
1878
|
-
exports[`Regression > internal
|
|
2068
|
+
exports[`Regression > internal 62`] = `"window.__DATA__.data.toc = {"items":[{"name":"Verbose root (index.yaml) will be transformed to index.html","href":"index.html","id":"UUID"},{"name":"Root will be transformed to index.html","href":"index.html","id":"UUID"},{"name":"Md item with not_var syntax","href":"1.html","id":"UUID"},{"name":"Md item named without extension","href":"1.html","id":"UUID"},{"name":"Item with empty href","id":"UUID"},{"name":"Multitoc item","href":"merge/merged.html","id":"UUID"},{"name":"Fragments","href":"includes/fragments.html","id":"UUID"},{"name":"Included Item","href":"included-item.html","id":"UUID"},{"name":"Named include (items is Object here - this is not an error)","items":[{"name":"Item 1","href":"sub/folder/item-1.html","id":"UUID"}],"id":"UUID"},{"href":"mermaid.html","name":"Mermaid usage","id":"UUID"},{"name":"Latex usage","href":"latex.html","id":"UUID"},{"name":"Images","href":"images.html","id":"UUID"},{"name":"Autotitle","href":"autotitle.html","id":"UUID"},{"name":"includes","href":"includes.html","id":"UUID"},{"name":"Entry as include","href":"entry-as-include.html","id":"UUID"},{"name":"Includer of entry","href":"includer-of-entry.html","id":"UUID"},{"name":"generic","items":[{"name":"Note 1","href":"generic/1.html","id":"UUID"},{"name":"Note 1","href":"generic/2.html","id":"UUID"},{"name":"3","href":"generic/3.html","id":"UUID"},{"name":"Sub notes","items":[{"name":"Sub note 1","href":"generic/Sub notes/1.html","id":"UUID"},{"name":"Sub note 2","href":"generic/Sub notes/2.html","id":"UUID"}],"id":"UUID"}],"id":"UUID"},{"name":"openapi","items":[{"name":"Overview","href":"openapi/index.html","id":"UUID"},{"name":"test-controller","items":[{"name":"Overview","href":"openapi/test-controller/index.html","id":"UUID"},{"href":"openapi/test-controller/getWithPayloadResponse.html","name":"Simple get operation. тест новой верстки 3","id":"UUID"},{"href":"openapi/test-controller/getHiddenTest.html","name":"Test x-hidden attribute","id":"UUID"}],"id":"UUID"}],"id":"UUID"}],"path":"toc.yaml","id":"UUID"};"`;
|