@diplodoc/cli-tests 0.0.0-rc-fix-translate-openapi-includer-202507171205 → 0.0.0-rc-resolve-codeblock-202509151421
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__/bundles.spec.ts.snap +168 -0
- package/e2e/__snapshots__/generate-map.spec.ts.snap +345 -0
- package/e2e/__snapshots__/include-toc.test.ts.snap +42 -0
- package/e2e/__snapshots__/load-custom-resources.spec.ts.snap +31 -117
- package/e2e/__snapshots__/metadata.spec.ts.snap +18 -51
- package/e2e/__snapshots__/plugin-corner-cases.spec.ts.snap +0 -0
- package/e2e/__snapshots__/preprocess.test.ts.snap +581 -0
- package/e2e/__snapshots__/regression.test.ts.snap +151 -268
- package/e2e/__snapshots__/restricted-access.test.ts.snap +20 -0
- package/e2e/__snapshots__/rtl.spec.ts.snap +6 -102
- package/e2e/__snapshots__/search.test.ts.snap +21 -36
- package/e2e/__snapshots__/single-page.spec.ts.snap +157 -0
- package/e2e/__snapshots__/skip-html-extension.spec.ts.snap +152 -0
- package/e2e/__snapshots__/translation.spec.ts.snap +469 -1186
- package/e2e/bundles.spec.ts +15 -0
- package/e2e/errors.spec.ts +33 -2
- package/e2e/generate-map.spec.ts +9 -3
- package/e2e/preprocess.test.ts +33 -0
- package/e2e/redirects-validation.spec.ts +61 -0
- package/e2e/search.test.ts +1 -1
- package/e2e/single-page.spec.ts +22 -0
- package/e2e/skip-html-extension.spec.ts +15 -0
- package/e2e/translation.spec.ts +21 -2
- package/fixtures/cliAdapter.ts +23 -0
- package/fixtures/globals.d.ts +4 -0
- package/fixtures/runners/binary.ts +4 -3
- package/fixtures/runners/types.ts +1 -2
- package/fixtures/utils/file.ts +53 -10
- package/fixtures/utils/test.ts +17 -8
- package/mocks/bundles/input/.yfm +13 -0
- package/mocks/bundles/input/index.md +12 -0
- package/mocks/bundles/input/page1.md +3 -0
- package/mocks/bundles/input/page2.md +5 -0
- package/mocks/bundles/input/toc.yaml +9 -0
- package/mocks/docs-viewer-interface/input/.yfm +6 -0
- package/mocks/docs-viewer-interface/input/index.md +3 -0
- package/mocks/docs-viewer-interface/input/toc.yaml +5 -0
- package/mocks/errors/extract-filtered-link/input/filtered.md +1 -0
- package/mocks/errors/extract-filtered-link/input/filtered2.md +0 -0
- package/mocks/errors/extract-filtered-link/input/index.md +7 -0
- package/mocks/errors/extract-filtered-link/input/toc.yaml +1 -0
- package/mocks/load-custom-resources/md2html-with-resources/input/page.md +9 -2
- package/mocks/load-custom-resources/md2md-with-resources/input/page.md +9 -2
- package/mocks/load-custom-resources/single-page-with-resources/input/page.md +9 -2
- package/mocks/metadata/md2html-with-metadata/input/page.md +8 -1
- package/mocks/metadata/md2md-with-metadata/input/page.md +7 -0
- package/mocks/preprocess/input/.yfm +1 -0
- package/mocks/preprocess/input/1.md +29 -0
- package/mocks/preprocess/input/_assets/1.png +0 -0
- package/mocks/preprocess/input/_assets/1.svg +0 -0
- package/mocks/preprocess/input/autotitle.md +23 -0
- package/mocks/preprocess/input/commented-include.md +3 -0
- package/mocks/preprocess/input/images.md +5 -0
- package/mocks/preprocess/input/included-item.md +12 -0
- package/mocks/preprocess/input/includes/deep.md +1 -0
- package/mocks/preprocess/input/includes/deepWithIndent.md +6 -0
- package/mocks/preprocess/input/includes/presets.yaml +2 -0
- package/mocks/preprocess/input/includes/sub/user.md +1 -0
- package/mocks/preprocess/input/includes/sub/userWithIndent.md +5 -0
- package/mocks/preprocess/input/includes/test.md +1 -0
- package/mocks/preprocess/input/includes/user.md +1 -0
- package/mocks/preprocess/input/includes.md +18 -0
- package/mocks/preprocess/input/latex.md +3 -0
- package/mocks/preprocess/input/mermaid.md +13 -0
- package/mocks/preprocess/input/presets.yaml +8 -0
- package/mocks/preprocess/input/sub/folder/item-1.md +7 -0
- package/mocks/preprocess/input/sub/toc.yaml +5 -0
- package/mocks/preprocess/input/toc-i.yaml +3 -0
- package/mocks/preprocess/input/toc.yaml +16 -0
- package/mocks/redirects-validation/extensions-deprecation/input/blah.md +0 -0
- package/mocks/redirects-validation/extensions-deprecation/input/redirects.yaml +5 -0
- package/mocks/redirects-validation/extensions-deprecation/input/toc.yaml +4 -0
- package/mocks/redirects-validation/invalid-regex/input/blah.md +0 -0
- package/mocks/redirects-validation/invalid-regex/input/redirects.yaml +3 -0
- package/mocks/redirects-validation/invalid-regex/input/toc.yaml +4 -0
- package/mocks/redirects-validation/malformed-redirect/input/blah.md +0 -0
- package/mocks/redirects-validation/malformed-redirect/input/redirects.yaml +6 -0
- package/mocks/redirects-validation/malformed-redirect/input/toc.yaml +4 -0
- package/mocks/redirects-validation/same-path/input/blah.md +0 -0
- package/mocks/redirects-validation/same-path/input/redirects.yaml +3 -0
- package/mocks/redirects-validation/same-path/input/toc.yaml +4 -0
- package/mocks/redirects-validation/unparseable/input/blah.md +0 -0
- package/mocks/redirects-validation/unparseable/input/redirects.yaml +11 -0
- package/mocks/redirects-validation/unparseable/input/toc.yaml +4 -0
- package/mocks/regression/input/.yfm +2 -0
- package/mocks/regression/input/autotitle.md +3 -0
- package/mocks/regression/input/images.md +2 -0
- package/mocks/regression/input/includes/deep.md +2 -0
- package/mocks/regression/input/includes/presets.yaml +1 -0
- package/mocks/regression/input/includes/tools.md +1 -0
- package/mocks/regression/input/includes.md +5 -0
- package/mocks/regression/input/merge/merge.md +2 -0
- package/mocks/regression/input/merge/presets.yaml +1 -0
- package/mocks/regression/input/merge/toc.yaml +2 -0
- package/mocks/regression/input/presets.yaml +1 -0
- package/mocks/regression/input/toc.yaml +2 -0
- package/mocks/search/input/.yfm +12 -0
- package/mocks/single-page/input/ru/index.yaml +9 -0
- package/mocks/single-page/input/ru/page.md +14 -0
- package/mocks/single-page/input/ru/project/config.md +1 -0
- package/mocks/single-page/input/ru/toc.yaml +7 -0
- package/mocks/skip-html-extension/input/.yfm +1 -0
- package/mocks/skip-html-extension/input/folder/index.md +1 -0
- package/mocks/skip-html-extension/input/index-test-html/index.md +4 -0
- package/mocks/skip-html-extension/input/index.md +6 -0
- package/mocks/skip-html-extension/input/page1.md +3 -0
- package/mocks/skip-html-extension/input/page2.md +6 -0
- package/mocks/skip-html-extension/input/toc.yaml +13 -0
- package/mocks/translation/dir-files/input/.yfm +6 -0
- package/mocks/translation/dir-files/input/ru/aboba.md +2 -4
- package/mocks/translation/dir-files/input/ru/nested/a1.md +3 -0
- package/mocks/translation/dir-files/input/ru/nested/folder1/a1.md +3 -0
- package/mocks/translation/dir-files/input/ru/nested/folder1/toc-i.yaml +3 -0
- package/mocks/translation/dir-files/input/ru/nested/syntax/base.md +2 -0
- package/mocks/translation/dir-files/input/ru/nested/toc.yaml +1 -0
- package/mocks/translation/dir-files/input/ru/no-var-page.md +3 -0
- package/mocks/translation/dir-files/input/ru/to-be-excluded.md +1 -0
- package/mocks/translation/dir-files/input/ru/toc.yaml +7 -1
- package/mocks/translation/openapi/input/toc.yaml +1 -1
- package/mocks/warning/unreachable-autotitle/input/index.md +1 -0
- package/mocks/warning/unreachable-autotitle/input/link.md +0 -0
- package/mocks/warning/unreachable-autotitle/input/toc.yaml +4 -0
- package/package.json +5 -5
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Regression > internal > filelist 1`] = `
|
|
4
4
|
"[
|
|
5
|
+
".yfm",
|
|
5
6
|
"1.md",
|
|
6
7
|
"_assets/1.png",
|
|
7
8
|
"_assets/2.png",
|
|
@@ -19,6 +20,7 @@ exports[`Regression > internal > filelist 1`] = `
|
|
|
19
20
|
"includes.md",
|
|
20
21
|
"includes/deep-hash.md",
|
|
21
22
|
"includes/test-hash.md",
|
|
23
|
+
"includes/tools-hash.md",
|
|
22
24
|
"includes/user-hash.md",
|
|
23
25
|
"index.yaml",
|
|
24
26
|
"latex.md",
|
|
@@ -37,29 +39,13 @@ exports[`Regression > internal > filelist 1`] = `
|
|
|
37
39
|
|
|
38
40
|
exports[`Regression > internal > filelist 2`] = `
|
|
39
41
|
"[
|
|
42
|
+
".yfm",
|
|
40
43
|
"1.html",
|
|
41
44
|
"_assets/1.png",
|
|
42
45
|
"_assets/2.png",
|
|
43
46
|
"_assets/3.png",
|
|
44
47
|
"_assets/5_1.png",
|
|
45
48
|
"_assets/empty.pdf",
|
|
46
|
-
"_bundle/search-async-1",
|
|
47
|
-
"_bundle/search-async-0",
|
|
48
|
-
"_bundle/app-css-1",
|
|
49
|
-
"_bundle/app-js-1",
|
|
50
|
-
"_bundle/app-css-3",
|
|
51
|
-
"_bundle/latex-extension.css",
|
|
52
|
-
"_bundle/latex-extension.js",
|
|
53
|
-
"_bundle/mermaid-extension.js",
|
|
54
|
-
"_bundle/page-constructor-extension.css",
|
|
55
|
-
"_bundle/page-constructor-extension.js",
|
|
56
|
-
"_bundle/search-js-0",
|
|
57
|
-
"_bundle/search-css-0",
|
|
58
|
-
"_bundle/search-js-1",
|
|
59
|
-
"_bundle/search-css-3",
|
|
60
|
-
"_bundle/search-css-1",
|
|
61
|
-
"_bundle/search-js-2",
|
|
62
|
-
"_bundle/search-css-2",
|
|
63
49
|
"autotitle.html",
|
|
64
50
|
"c.md",
|
|
65
51
|
"generic/1.html",
|
|
@@ -85,10 +71,18 @@ exports[`Regression > internal > filelist 2`] = `
|
|
|
85
71
|
`;
|
|
86
72
|
|
|
87
73
|
exports[`Regression > internal 1`] = `
|
|
74
|
+
"preprocess:
|
|
75
|
+
mergeAutotitles: true
|
|
76
|
+
"
|
|
77
|
+
`;
|
|
78
|
+
|
|
79
|
+
exports[`Regression > internal 2`] = `
|
|
88
80
|
"---
|
|
89
81
|
metadata:
|
|
90
82
|
- name: generator
|
|
91
83
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
84
|
+
vcsPath: 1.md
|
|
85
|
+
sourcePath: 1.md
|
|
92
86
|
---
|
|
93
87
|
# Title
|
|
94
88
|
|
|
@@ -110,11 +104,11 @@ default-var-value
|
|
|
110
104
|
|
|
111
105
|
## Subtitle {#subtitle}
|
|
112
106
|
|
|
113
|
-
[
|
|
107
|
+
[Mermaid usage](./mermaid.md)
|
|
114
108
|
|
|
115
|
-
[
|
|
109
|
+
[Mermaid info](./mermaid.md#info)
|
|
116
110
|
|
|
117
|
-
[](./latex.md)
|
|
111
|
+
[Latex usage](./latex.md)
|
|
118
112
|
|
|
119
113
|
[noext-link](./includes)
|
|
120
114
|
|
|
@@ -122,31 +116,36 @@ default-var-value
|
|
|
122
116
|
"
|
|
123
117
|
`;
|
|
124
118
|
|
|
125
|
-
exports[`Regression > internal
|
|
119
|
+
exports[`Regression > internal 3`] = `
|
|
126
120
|
"---
|
|
127
121
|
metadata:
|
|
128
122
|
- name: generator
|
|
129
123
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
124
|
+
vcsPath: autotitle.md
|
|
125
|
+
sourcePath: autotitle.md
|
|
130
126
|
---
|
|
131
127
|
# Autotitles
|
|
132
128
|
|
|
133
129
|
Empty title
|
|
134
|
-
[](./1.md)
|
|
130
|
+
[Title](./1.md)
|
|
135
131
|
|
|
136
132
|
Empty subtitle
|
|
137
|
-
[](./1.md#subtitle)
|
|
133
|
+
[Subtitle](./1.md#subtitle)
|
|
138
134
|
|
|
139
135
|
Special title
|
|
140
|
-
[
|
|
136
|
+
[Title](./1.md)
|
|
141
137
|
|
|
142
138
|
Special subtitle
|
|
143
|
-
[
|
|
139
|
+
[Subtitle](./1.md#subtitle)
|
|
144
140
|
|
|
145
141
|
Empty local title
|
|
146
|
-
[](#header)
|
|
142
|
+
[Header](#header)
|
|
147
143
|
|
|
148
144
|
Special local title
|
|
149
|
-
[
|
|
145
|
+
[Header](#header)
|
|
146
|
+
|
|
147
|
+
Circular title
|
|
148
|
+
[Header](./autotitle.md#header)
|
|
150
149
|
|
|
151
150
|
## Header {#header}
|
|
152
151
|
|
|
@@ -154,11 +153,13 @@ Content
|
|
|
154
153
|
"
|
|
155
154
|
`;
|
|
156
155
|
|
|
157
|
-
exports[`Regression > internal
|
|
156
|
+
exports[`Regression > internal 4`] = `
|
|
158
157
|
"---
|
|
159
158
|
metadata:
|
|
160
159
|
- name: generator
|
|
161
160
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
161
|
+
vcsPath: generic/1.md
|
|
162
|
+
sourcePath: generic/1.md
|
|
162
163
|
---
|
|
163
164
|
# Note 1
|
|
164
165
|
|
|
@@ -166,11 +167,13 @@ Note content 1
|
|
|
166
167
|
"
|
|
167
168
|
`;
|
|
168
169
|
|
|
169
|
-
exports[`Regression > internal
|
|
170
|
+
exports[`Regression > internal 5`] = `
|
|
170
171
|
"---
|
|
171
172
|
metadata:
|
|
172
173
|
- name: generator
|
|
173
174
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
175
|
+
vcsPath: generic/2.md
|
|
176
|
+
sourcePath: generic/2.md
|
|
174
177
|
---
|
|
175
178
|
# Note 1
|
|
176
179
|
|
|
@@ -178,21 +181,25 @@ Note content 1
|
|
|
178
181
|
"
|
|
179
182
|
`;
|
|
180
183
|
|
|
181
|
-
exports[`Regression > internal
|
|
184
|
+
exports[`Regression > internal 6`] = `
|
|
182
185
|
"---
|
|
183
186
|
metadata:
|
|
184
187
|
- name: generator
|
|
185
188
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
189
|
+
vcsPath: generic/3.md
|
|
190
|
+
sourcePath: generic/3.md
|
|
186
191
|
---
|
|
187
192
|
Note content 1
|
|
188
193
|
"
|
|
189
194
|
`;
|
|
190
195
|
|
|
191
|
-
exports[`Regression > internal
|
|
196
|
+
exports[`Regression > internal 7`] = `
|
|
192
197
|
"---
|
|
193
198
|
metadata:
|
|
194
199
|
- name: generator
|
|
195
200
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
201
|
+
vcsPath: generic/Sub notes/1.md
|
|
202
|
+
sourcePath: generic/Sub notes/1.md
|
|
196
203
|
---
|
|
197
204
|
# Sub note 1
|
|
198
205
|
|
|
@@ -200,11 +207,13 @@ Note content 1
|
|
|
200
207
|
"
|
|
201
208
|
`;
|
|
202
209
|
|
|
203
|
-
exports[`Regression > internal
|
|
210
|
+
exports[`Regression > internal 8`] = `
|
|
204
211
|
"---
|
|
205
212
|
metadata:
|
|
206
213
|
- name: generator
|
|
207
214
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
215
|
+
vcsPath: generic/Sub notes/2.md
|
|
216
|
+
sourcePath: generic/Sub notes/2.md
|
|
208
217
|
---
|
|
209
218
|
# Sub note 2
|
|
210
219
|
|
|
@@ -212,11 +221,13 @@ Note content 2
|
|
|
212
221
|
"
|
|
213
222
|
`;
|
|
214
223
|
|
|
215
|
-
exports[`Regression > internal
|
|
224
|
+
exports[`Regression > internal 9`] = `
|
|
216
225
|
"---
|
|
217
226
|
metadata:
|
|
218
227
|
- name: generator
|
|
219
228
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
229
|
+
vcsPath: images.md
|
|
230
|
+
sourcePath: images.md
|
|
220
231
|
---
|
|
221
232
|
# Images
|
|
222
233
|
|
|
@@ -229,14 +240,17 @@ metadata:
|
|
|
229
240
|
<!--  -->
|
|
230
241
|
|
|
231
242
|

|
|
232
|
-
|
|
243
|
+
|
|
244
|
+
[](latex.md)"
|
|
233
245
|
`;
|
|
234
246
|
|
|
235
|
-
exports[`Regression > internal
|
|
247
|
+
exports[`Regression > internal 10`] = `
|
|
236
248
|
"---
|
|
237
249
|
metadata:
|
|
238
250
|
- name: generator
|
|
239
251
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
252
|
+
vcsPath: included-item.md
|
|
253
|
+
sourcePath: included-item.md
|
|
240
254
|
---
|
|
241
255
|
# Included item
|
|
242
256
|
|
|
@@ -254,11 +268,13 @@ Included item text
|
|
|
254
268
|
"
|
|
255
269
|
`;
|
|
256
270
|
|
|
257
|
-
exports[`Regression > internal
|
|
271
|
+
exports[`Regression > internal 11`] = `
|
|
258
272
|
"---
|
|
259
273
|
metadata:
|
|
260
274
|
- name: generator
|
|
261
275
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
276
|
+
vcsPath: includes.md
|
|
277
|
+
sourcePath: includes.md
|
|
262
278
|
---
|
|
263
279
|
Text
|
|
264
280
|
|
|
@@ -268,25 +284,36 @@ Text
|
|
|
268
284
|
|
|
269
285
|
<!--{% include [For includes/deep.md](includes/deep.md) %}-->
|
|
270
286
|
{% include [For includes/deep-hash.md](includes/deep-hash.md) %}
|
|
287
|
+
|
|
288
|
+
Link after include
|
|
289
|
+
[Subtitle](./1.md#subtitle)
|
|
290
|
+
|
|
291
|
+
Link after include
|
|
271
292
|
"
|
|
272
293
|
`;
|
|
273
294
|
|
|
274
|
-
exports[`Regression > internal
|
|
295
|
+
exports[`Regression > internal 12`] = `
|
|
275
296
|
"{% include [user](./user-hash.md) %}
|
|
276
|
-
|
|
297
|
+
|
|
298
|
+
[](../latex.md)"
|
|
277
299
|
`;
|
|
278
300
|
|
|
279
|
-
exports[`Regression > internal
|
|
301
|
+
exports[`Regression > internal 13`] = `
|
|
280
302
|
"Test
|
|
281
303
|
"
|
|
282
304
|
`;
|
|
283
305
|
|
|
284
|
-
exports[`Regression > internal
|
|
306
|
+
exports[`Regression > internal 14`] = `
|
|
307
|
+
"Tool: Hammer and Laser
|
|
308
|
+
"
|
|
309
|
+
`;
|
|
310
|
+
|
|
311
|
+
exports[`Regression > internal 15`] = `
|
|
285
312
|
"Bob
|
|
286
313
|
"
|
|
287
314
|
`;
|
|
288
315
|
|
|
289
|
-
exports[`Regression > internal
|
|
316
|
+
exports[`Regression > internal 16`] = `
|
|
290
317
|
"description:
|
|
291
318
|
- Some text
|
|
292
319
|
links:
|
|
@@ -298,14 +325,18 @@ meta:
|
|
|
298
325
|
metadata:
|
|
299
326
|
- name: generator
|
|
300
327
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
328
|
+
vcsPath: index.yaml
|
|
329
|
+
sourcePath: index.yaml
|
|
301
330
|
"
|
|
302
331
|
`;
|
|
303
332
|
|
|
304
|
-
exports[`Regression > internal
|
|
333
|
+
exports[`Regression > internal 17`] = `
|
|
305
334
|
"---
|
|
306
335
|
metadata:
|
|
307
336
|
- name: generator
|
|
308
337
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
338
|
+
vcsPath: latex.md
|
|
339
|
+
sourcePath: latex.md
|
|
309
340
|
---
|
|
310
341
|
# Latex usage
|
|
311
342
|
|
|
@@ -313,23 +344,29 @@ $/sqrt{3x-1}+(1+x)^2$
|
|
|
313
344
|
"
|
|
314
345
|
`;
|
|
315
346
|
|
|
316
|
-
exports[`Regression > internal
|
|
347
|
+
exports[`Regression > internal 18`] = `
|
|
317
348
|
"---
|
|
318
349
|
metadata:
|
|
319
350
|
- name: generator
|
|
320
351
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
352
|
+
vcsPath: merge/merge.md
|
|
353
|
+
sourcePath: merge/merge.md
|
|
321
354
|
---
|
|
322
355
|
# Should use merged item
|
|
323
356
|
|
|
324
357
|
[merged](./merged.md)
|
|
358
|
+
|
|
359
|
+
{% include [tools](../includes/tools-hash.md) %}
|
|
325
360
|
"
|
|
326
361
|
`;
|
|
327
362
|
|
|
328
|
-
exports[`Regression > internal
|
|
363
|
+
exports[`Regression > internal 19`] = `
|
|
329
364
|
"---
|
|
330
365
|
metadata:
|
|
331
366
|
- name: generator
|
|
332
367
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
368
|
+
sourcePath: merge-source/merged.md
|
|
369
|
+
vcsPath: merge-source/merged.md
|
|
333
370
|
---
|
|
334
371
|
# Merged item
|
|
335
372
|
|
|
@@ -337,21 +374,25 @@ Should be linked in toc.yaml
|
|
|
337
374
|
"
|
|
338
375
|
`;
|
|
339
376
|
|
|
340
|
-
exports[`Regression > internal
|
|
377
|
+
exports[`Regression > internal 20`] = `
|
|
341
378
|
"items:
|
|
342
379
|
- name: Use merged
|
|
343
380
|
href: merge.md
|
|
381
|
+
- name: Multitoc item
|
|
382
|
+
href: ../1.md
|
|
344
383
|
- name: Merged item
|
|
345
384
|
href: merged.md
|
|
346
385
|
path: merge/toc.yaml
|
|
347
386
|
"
|
|
348
387
|
`;
|
|
349
388
|
|
|
350
|
-
exports[`Regression > internal
|
|
389
|
+
exports[`Regression > internal 21`] = `
|
|
351
390
|
"---
|
|
352
391
|
metadata:
|
|
353
392
|
- name: generator
|
|
354
393
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
394
|
+
vcsPath: mermaid.md
|
|
395
|
+
sourcePath: mermaid.md
|
|
355
396
|
---
|
|
356
397
|
# Mermaid usage
|
|
357
398
|
|
|
@@ -369,11 +410,13 @@ Some mermaid info
|
|
|
369
410
|
"
|
|
370
411
|
`;
|
|
371
412
|
|
|
372
|
-
exports[`Regression > internal
|
|
413
|
+
exports[`Regression > internal 22`] = `
|
|
373
414
|
"---
|
|
374
415
|
metadata:
|
|
375
416
|
- name: generator
|
|
376
417
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
418
|
+
vcsPath: openapi/index.md
|
|
419
|
+
sourcePath: openapi/index.md
|
|
377
420
|
---
|
|
378
421
|
# OpenAPI definition
|
|
379
422
|
|
|
@@ -468,11 +511,13 @@ metadata:
|
|
|
468
511
|
<!-- markdownlint-disable-file -->"
|
|
469
512
|
`;
|
|
470
513
|
|
|
471
|
-
exports[`Regression > internal
|
|
514
|
+
exports[`Regression > internal 23`] = `
|
|
472
515
|
"---
|
|
473
516
|
metadata:
|
|
474
517
|
- name: generator
|
|
475
518
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
519
|
+
vcsPath: openapi/test-controller/getWithPayloadResponse.md
|
|
520
|
+
sourcePath: openapi/test-controller/getWithPayloadResponse.md
|
|
476
521
|
---
|
|
477
522
|
<div class="openapi">
|
|
478
523
|
|
|
@@ -552,11 +597,13 @@ Generated server url
|
|
|
552
597
|
[*Deprecated]: No longer supported, please use an alternative and newer version."
|
|
553
598
|
`;
|
|
554
599
|
|
|
555
|
-
exports[`Regression > internal
|
|
600
|
+
exports[`Regression > internal 24`] = `
|
|
556
601
|
"---
|
|
557
602
|
metadata:
|
|
558
603
|
- name: generator
|
|
559
604
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
605
|
+
vcsPath: openapi/test-controller/index.md
|
|
606
|
+
sourcePath: openapi/test-controller/index.md
|
|
560
607
|
---
|
|
561
608
|
# test-controller
|
|
562
609
|
|
|
@@ -567,7 +614,7 @@ metadata:
|
|
|
567
614
|
<!-- markdownlint-disable-file -->"
|
|
568
615
|
`;
|
|
569
616
|
|
|
570
|
-
exports[`Regression > internal
|
|
617
|
+
exports[`Regression > internal 25`] = `
|
|
571
618
|
"files:
|
|
572
619
|
- from: c.md
|
|
573
620
|
to: d.md
|
|
@@ -577,21 +624,23 @@ common:
|
|
|
577
624
|
"
|
|
578
625
|
`;
|
|
579
626
|
|
|
580
|
-
exports[`Regression > internal
|
|
627
|
+
exports[`Regression > internal 26`] = `
|
|
581
628
|
"---
|
|
582
629
|
metadata:
|
|
583
630
|
- name: generator
|
|
584
631
|
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
632
|
+
vcsPath: sub/folder/item-1.md
|
|
633
|
+
sourcePath: sub/folder/item-1.md
|
|
585
634
|
---
|
|
586
635
|
# Item 1
|
|
587
636
|
|
|
588
637
|
Item 1 text
|
|
589
638
|
|
|
590
|
-
[
|
|
639
|
+
[Images](../../images.md)
|
|
591
640
|
"
|
|
592
641
|
`;
|
|
593
642
|
|
|
594
|
-
exports[`Regression > internal
|
|
643
|
+
exports[`Regression > internal 27`] = `
|
|
595
644
|
"items:
|
|
596
645
|
- name: Verbose root (index.yaml) will be transformed to index.html
|
|
597
646
|
href: index.yaml
|
|
@@ -602,6 +651,8 @@ exports[`Regression > internal 25`] = `
|
|
|
602
651
|
- name: Md item named without extension
|
|
603
652
|
href: 1.md
|
|
604
653
|
- name: Item with empty href
|
|
654
|
+
- name: Multitoc item
|
|
655
|
+
href: merge/merged.md
|
|
605
656
|
- name: Included Item
|
|
606
657
|
href: included-item.md
|
|
607
658
|
- name: Named include (items is Object here - this is not an error)
|
|
@@ -646,7 +697,13 @@ path: toc.yaml
|
|
|
646
697
|
"
|
|
647
698
|
`;
|
|
648
699
|
|
|
649
|
-
exports[`Regression > internal
|
|
700
|
+
exports[`Regression > internal 28`] = `
|
|
701
|
+
"preprocess:
|
|
702
|
+
mergeAutotitles: true
|
|
703
|
+
"
|
|
704
|
+
`;
|
|
705
|
+
|
|
706
|
+
exports[`Regression > internal 29`] = `
|
|
650
707
|
"<!DOCTYPE html>
|
|
651
708
|
<html lang="ru" dir="ltr">
|
|
652
709
|
<head>
|
|
@@ -655,17 +712,12 @@ exports[`Regression > internal 26`] = `
|
|
|
655
712
|
<base href="./" />
|
|
656
713
|
<title>Title</title>
|
|
657
714
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
658
|
-
|
|
659
715
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
663
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
664
716
|
</head>
|
|
665
717
|
<body class="g-root g-root_theme_light">
|
|
666
718
|
<div id="root"></div>
|
|
667
719
|
<script type="application/json" id="diplodoc-state">
|
|
668
|
-
{"data":{"leading":false,"html":"<p>Text {{not-var}} {{skip()}} default-var-value</p>/n<p>Text <code>{{not-var}}</code> <code>{{skip()}}</code> <code>default-var-value</code></p>/n<p>Text</p>/n/n <div class=\\"yfm-clipboard\\">/n <pre><code class=\\"hljs\\">{{not-var}}/n/n{{skip()}}/n/ndefault-var-value/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"9\\">/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-9\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-9\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-9.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n<p><code>[not a link](./path/to/relative/file.md)</code></p>/n<h2 id=\\"subtitle\\"><a href=\\"1.html#subtitle\\" class=\\"yfm-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Subtitle</span></a>Subtitle</h2>/n<p><a href=\\"mermaid.html\\">Mermaid usage</a></p>/n<p><a href=\\"mermaid.html#info\\">Mermaid info</a></p>/n<p><a href=\\"latex.html\\">Latex usage</a></p>/n<p><a href=\\"includes\\">noext-link</a></p>/n<p>Bob</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[{"title":"Subtitle","href":"1.html#subtitle","level":2}],"title":"Title"},"router":{"pathname":"1","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
720
|
+
{"data":{"leading":false,"html":"<p>Text {{not-var}} {{skip()}} default-var-value</p>/n<p>Text <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id="inline-code-id-1">{{not-var}}</code> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id="inline-code-id-2">{{skip()}}</code> <code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id="inline-code-id-3">default-var-value</code></p>/n<p>Text</p>/n/n <div class=\\"yfm-clipboard\\">/n <pre><code class=\\"hljs\\">{{not-var}}/n/n{{skip()}}/n/ndefault-var-value/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"9\\">/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-9\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-9\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-9.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n<p><code class=\\"yfm-clipboard-inline-code\\" role=\\"button\\" tabindex=\\"0\\" id="inline-code-id-4">[not a link](./path/to/relative/file.md)</code></p>/n<h2 id=\\"subtitle\\"><a href=\\"1.html#subtitle\\" class=\\"yfm-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Subtitle</span></a>Subtitle</h2>/n<p><a href=\\"mermaid.html\\">Mermaid usage</a></p>/n<p><a href=\\"mermaid.html#info\\">Mermaid info</a></p>/n<p><a href=\\"latex.html\\">Latex usage</a></p>/n<p><a href=\\"includes\\">noext-link</a></p>/n<p>Bob</p>/n<div class=\\"yfm inline_code_tooltip\\" id=\\"tooltip_inline_clipboard_dialog\\" role=\\"dialog\\">Скопировано</div>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"1.md","sourcePath":"1.md"},"headings":[{"title":"Subtitle","href":"1.html#subtitle","level":2}],"title":"Title"},"router":{"pathname":"1","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
669
721
|
</script>
|
|
670
722
|
<script type="application/javascript">
|
|
671
723
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -675,15 +727,11 @@ exports[`Regression > internal 26`] = `
|
|
|
675
727
|
window.STATIC_CONTENT = false;
|
|
676
728
|
</script>
|
|
677
729
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
678
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
679
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
680
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
681
|
-
|
|
682
730
|
</body>
|
|
683
731
|
</html>"
|
|
684
732
|
`;
|
|
685
733
|
|
|
686
|
-
exports[`Regression > internal
|
|
734
|
+
exports[`Regression > internal 30`] = `
|
|
687
735
|
"<!DOCTYPE html>
|
|
688
736
|
<html lang="ru" dir="ltr">
|
|
689
737
|
<head>
|
|
@@ -692,17 +740,12 @@ exports[`Regression > internal 27`] = `
|
|
|
692
740
|
<base href="./" />
|
|
693
741
|
<title>Autotitles</title>
|
|
694
742
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
695
|
-
|
|
696
743
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
700
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
701
744
|
</head>
|
|
702
745
|
<body class="g-root g-root_theme_light">
|
|
703
746
|
<div id="root"></div>
|
|
704
747
|
<script type="application/json" id="diplodoc-state">
|
|
705
|
-
{"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<h2 id=\\"header\\"><a href=\\"autotitle.html#header\\" class=\\"yfm-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"}]},"headings":[{"title":"Header","href":"autotitle.html#header","level":2}],"title":"Autotitles"},"router":{"pathname":"autotitle","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
748
|
+
{"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\\" 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","sourcePath":"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}}
|
|
706
749
|
</script>
|
|
707
750
|
<script type="application/javascript">
|
|
708
751
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -712,15 +755,11 @@ exports[`Regression > internal 27`] = `
|
|
|
712
755
|
window.STATIC_CONTENT = false;
|
|
713
756
|
</script>
|
|
714
757
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
715
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
716
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
717
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
718
|
-
|
|
719
758
|
</body>
|
|
720
759
|
</html>"
|
|
721
760
|
`;
|
|
722
761
|
|
|
723
|
-
exports[`Regression > internal
|
|
762
|
+
exports[`Regression > internal 31`] = `
|
|
724
763
|
"<!DOCTYPE html>
|
|
725
764
|
<html lang="ru" dir="ltr">
|
|
726
765
|
<head>
|
|
@@ -746,7 +785,7 @@ exports[`Regression > internal 28`] = `
|
|
|
746
785
|
</html>"
|
|
747
786
|
`;
|
|
748
787
|
|
|
749
|
-
exports[`Regression > internal
|
|
788
|
+
exports[`Regression > internal 32`] = `
|
|
750
789
|
"<!DOCTYPE html>
|
|
751
790
|
<html lang="ru" dir="ltr">
|
|
752
791
|
<head>
|
|
@@ -755,17 +794,12 @@ exports[`Regression > internal 29`] = `
|
|
|
755
794
|
<base href="../" />
|
|
756
795
|
<title>Note 1</title>
|
|
757
796
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
758
|
-
|
|
759
797
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
763
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
764
798
|
</head>
|
|
765
799
|
<body class="g-root g-root_theme_light">
|
|
766
800
|
<div id="root"></div>
|
|
767
801
|
<script type="application/json" id="diplodoc-state">
|
|
768
|
-
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Note 1"},"router":{"pathname":"generic/1","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}
|
|
802
|
+
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"generic/1.md","sourcePath":"generic/1.md"},"headings":[],"title":"Note 1"},"router":{"pathname":"generic/1","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
769
803
|
</script>
|
|
770
804
|
<script type="application/javascript">
|
|
771
805
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -775,15 +809,11 @@ exports[`Regression > internal 29`] = `
|
|
|
775
809
|
window.STATIC_CONTENT = false;
|
|
776
810
|
</script>
|
|
777
811
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
778
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
779
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
780
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
781
|
-
|
|
782
812
|
</body>
|
|
783
813
|
</html>"
|
|
784
814
|
`;
|
|
785
815
|
|
|
786
|
-
exports[`Regression > internal
|
|
816
|
+
exports[`Regression > internal 33`] = `
|
|
787
817
|
"<!DOCTYPE html>
|
|
788
818
|
<html lang="ru" dir="ltr">
|
|
789
819
|
<head>
|
|
@@ -792,17 +822,12 @@ exports[`Regression > internal 30`] = `
|
|
|
792
822
|
<base href="../" />
|
|
793
823
|
<title>Note 1</title>
|
|
794
824
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
795
|
-
|
|
796
825
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
800
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
801
826
|
</head>
|
|
802
827
|
<body class="g-root g-root_theme_light">
|
|
803
828
|
<div id="root"></div>
|
|
804
829
|
<script type="application/json" id="diplodoc-state">
|
|
805
|
-
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Note 1"},"router":{"pathname":"generic/2","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}
|
|
830
|
+
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"generic/2.md","sourcePath":"generic/2.md"},"headings":[],"title":"Note 1"},"router":{"pathname":"generic/2","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
806
831
|
</script>
|
|
807
832
|
<script type="application/javascript">
|
|
808
833
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -812,15 +837,11 @@ exports[`Regression > internal 30`] = `
|
|
|
812
837
|
window.STATIC_CONTENT = false;
|
|
813
838
|
</script>
|
|
814
839
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
815
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
816
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
817
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
818
|
-
|
|
819
840
|
</body>
|
|
820
841
|
</html>"
|
|
821
842
|
`;
|
|
822
843
|
|
|
823
|
-
exports[`Regression > internal
|
|
844
|
+
exports[`Regression > internal 34`] = `
|
|
824
845
|
"<!DOCTYPE html>
|
|
825
846
|
<html lang="ru" dir="ltr">
|
|
826
847
|
<head>
|
|
@@ -829,17 +850,12 @@ exports[`Regression > internal 31`] = `
|
|
|
829
850
|
<base href="../" />
|
|
830
851
|
<title></title>
|
|
831
852
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
832
|
-
|
|
833
853
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
837
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
838
854
|
</head>
|
|
839
855
|
<body class="g-root g-root_theme_light">
|
|
840
856
|
<div id="root"></div>
|
|
841
857
|
<script type="application/json" id="diplodoc-state">
|
|
842
|
-
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":""},"router":{"pathname":"generic/3","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}
|
|
858
|
+
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"generic/3.md","sourcePath":"generic/3.md"},"headings":[],"title":""},"router":{"pathname":"generic/3","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
843
859
|
</script>
|
|
844
860
|
<script type="application/javascript">
|
|
845
861
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -849,15 +865,11 @@ exports[`Regression > internal 31`] = `
|
|
|
849
865
|
window.STATIC_CONTENT = false;
|
|
850
866
|
</script>
|
|
851
867
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
852
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
853
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
854
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
855
|
-
|
|
856
868
|
</body>
|
|
857
869
|
</html>"
|
|
858
870
|
`;
|
|
859
871
|
|
|
860
|
-
exports[`Regression > internal
|
|
872
|
+
exports[`Regression > internal 35`] = `
|
|
861
873
|
"<!DOCTYPE html>
|
|
862
874
|
<html lang="ru" dir="ltr">
|
|
863
875
|
<head>
|
|
@@ -866,17 +878,12 @@ exports[`Regression > internal 32`] = `
|
|
|
866
878
|
<base href="../../" />
|
|
867
879
|
<title>Sub note 1</title>
|
|
868
880
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
869
|
-
|
|
870
881
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
874
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
875
882
|
</head>
|
|
876
883
|
<body class="g-root g-root_theme_light">
|
|
877
884
|
<div id="root"></div>
|
|
878
885
|
<script type="application/json" id="diplodoc-state">
|
|
879
|
-
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Sub note 1"},"router":{"pathname":"generic/Sub notes/1","depth":3,"base":"../../"},"lang":"ru","langs":["ru"]}
|
|
886
|
+
{"data":{"leading":false,"html":"<p>Note content 1</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"generic/Sub notes/1.md","sourcePath":"generic/Sub notes/1.md"},"headings":[],"title":"Sub note 1"},"router":{"pathname":"generic/Sub notes/1","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
880
887
|
</script>
|
|
881
888
|
<script type="application/javascript">
|
|
882
889
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -886,15 +893,11 @@ exports[`Regression > internal 32`] = `
|
|
|
886
893
|
window.STATIC_CONTENT = false;
|
|
887
894
|
</script>
|
|
888
895
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
889
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
890
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
891
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
892
|
-
|
|
893
896
|
</body>
|
|
894
897
|
</html>"
|
|
895
898
|
`;
|
|
896
899
|
|
|
897
|
-
exports[`Regression > internal
|
|
900
|
+
exports[`Regression > internal 36`] = `
|
|
898
901
|
"<!DOCTYPE html>
|
|
899
902
|
<html lang="ru" dir="ltr">
|
|
900
903
|
<head>
|
|
@@ -903,17 +906,12 @@ exports[`Regression > internal 33`] = `
|
|
|
903
906
|
<base href="../../" />
|
|
904
907
|
<title>Sub note 2</title>
|
|
905
908
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
906
|
-
|
|
907
909
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
911
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
912
910
|
</head>
|
|
913
911
|
<body class="g-root g-root_theme_light">
|
|
914
912
|
<div id="root"></div>
|
|
915
913
|
<script type="application/json" id="diplodoc-state">
|
|
916
|
-
{"data":{"leading":false,"html":"<p>Note content 2</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Sub note 2"},"router":{"pathname":"generic/Sub notes/2","depth":3,"base":"../../"},"lang":"ru","langs":["ru"]}
|
|
914
|
+
{"data":{"leading":false,"html":"<p>Note content 2</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"generic/Sub notes/2.md","sourcePath":"generic/Sub notes/2.md"},"headings":[],"title":"Sub note 2"},"router":{"pathname":"generic/Sub notes/2","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
917
915
|
</script>
|
|
918
916
|
<script type="application/javascript">
|
|
919
917
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -923,15 +921,11 @@ exports[`Regression > internal 33`] = `
|
|
|
923
921
|
window.STATIC_CONTENT = false;
|
|
924
922
|
</script>
|
|
925
923
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
926
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
927
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
928
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
929
|
-
|
|
930
924
|
</body>
|
|
931
925
|
</html>"
|
|
932
926
|
`;
|
|
933
927
|
|
|
934
|
-
exports[`Regression > internal
|
|
928
|
+
exports[`Regression > internal 37`] = `
|
|
935
929
|
"<!DOCTYPE html>
|
|
936
930
|
<html lang="ru" dir="ltr">
|
|
937
931
|
<head>
|
|
@@ -940,17 +934,12 @@ exports[`Regression > internal 34`] = `
|
|
|
940
934
|
<base href="./" />
|
|
941
935
|
<title>Images</title>
|
|
942
936
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
943
|
-
|
|
944
937
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
948
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
949
938
|
</head>
|
|
950
939
|
<body class="g-root g-root_theme_light">
|
|
951
940
|
<div id="root"></div>
|
|
952
941
|
<script type="application/json" id="diplodoc-state">
|
|
953
|
-
{"data":{"leading":false,"html":"<p><img src=\\"_assets/1.png\\" alt=\\"simple image\\" /></p>/n/n<p><img src=\\"_assets/3.png\\" alt=\\"with trailing comment\\" /></p>/n/n<p><img src=\\"_assets/5_1.png\\" alt=\\"with backslash\\" /></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Images"},"router":{"pathname":"images","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
942
|
+
{"data":{"leading":false,"html":"<p><img src=\\"_assets/1.png\\" alt=\\"simple image\\" /></p>/n/n<p><img src=\\"_assets/3.png\\" alt=\\"with trailing comment\\" /></p>/n/n<p><img src=\\"_assets/5_1.png\\" alt=\\"with backslash\\" /></p>/n<p><a href=\\"latex.html\\"><img src=\\"_assets/3.png\\" alt=\\"img 3\\" /></a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"images.md","sourcePath":"images.md"},"headings":[],"title":"Images"},"router":{"pathname":"images","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
954
943
|
</script>
|
|
955
944
|
<script type="application/javascript">
|
|
956
945
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -960,15 +949,11 @@ exports[`Regression > internal 34`] = `
|
|
|
960
949
|
window.STATIC_CONTENT = false;
|
|
961
950
|
</script>
|
|
962
951
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
963
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
964
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
965
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
966
|
-
|
|
967
952
|
</body>
|
|
968
953
|
</html>"
|
|
969
954
|
`;
|
|
970
955
|
|
|
971
|
-
exports[`Regression > internal
|
|
956
|
+
exports[`Regression > internal 38`] = `
|
|
972
957
|
"<!DOCTYPE html>
|
|
973
958
|
<html lang="ru" dir="ltr">
|
|
974
959
|
<head>
|
|
@@ -977,17 +962,12 @@ exports[`Regression > internal 35`] = `
|
|
|
977
962
|
<base href="./" />
|
|
978
963
|
<title>Included item</title>
|
|
979
964
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
980
|
-
|
|
981
965
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
985
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
986
966
|
</head>
|
|
987
967
|
<body class="g-root g-root_theme_light">
|
|
988
968
|
<div id="root"></div>
|
|
989
969
|
<script type="application/json" id="diplodoc-state">
|
|
990
|
-
{"data":{"leading":false,"html":"<p>Included item text</p>/n/n<div class=\\"yfm-note yfm-accent-alert\\" note-type=\\"alert\\"><p class=\\"yfm-note-title\\">Alert!</p>/n<div class=\\"yfm-note-content\\"> /n</div></div><p><img src=\\"_assets/empty.pdf\\" alt=\\"pdf\\" /></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Included item"},"router":{"pathname":"included-item","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
970
|
+
{"data":{"leading":false,"html":"<p>Included item text</p>/n/n<div class=\\"yfm-note yfm-accent-alert\\" note-type=\\"alert\\"><p class=\\"yfm-note-title\\">Alert!</p>/n<div class=\\"yfm-note-content\\"> /n</div></div><p><img src=\\"_assets/empty.pdf\\" alt=\\"pdf\\" /></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"included-item.md","sourcePath":"included-item.md"},"headings":[],"title":"Included item"},"router":{"pathname":"included-item","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
991
971
|
</script>
|
|
992
972
|
<script type="application/javascript">
|
|
993
973
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -997,15 +977,11 @@ exports[`Regression > internal 35`] = `
|
|
|
997
977
|
window.STATIC_CONTENT = false;
|
|
998
978
|
</script>
|
|
999
979
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1000
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1001
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1002
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1003
|
-
|
|
1004
980
|
</body>
|
|
1005
981
|
</html>"
|
|
1006
982
|
`;
|
|
1007
983
|
|
|
1008
|
-
exports[`Regression > internal
|
|
984
|
+
exports[`Regression > internal 39`] = `
|
|
1009
985
|
"<!DOCTYPE html>
|
|
1010
986
|
<html lang="ru" dir="ltr">
|
|
1011
987
|
<head>
|
|
@@ -1014,17 +990,12 @@ exports[`Regression > internal 36`] = `
|
|
|
1014
990
|
<base href="./" />
|
|
1015
991
|
<title></title>
|
|
1016
992
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1017
|
-
|
|
1018
993
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1022
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1023
994
|
</head>
|
|
1024
995
|
<body class="g-root g-root_theme_light">
|
|
1025
996
|
<div id="root"></div>
|
|
1026
997
|
<script type="application/json" id="diplodoc-state">
|
|
1027
|
-
{"data":{"leading":false,"html":"<p>Text</p>/n<p>Bob</p>/n<p>Test</p>/n/n<p>Bob</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":""},"router":{"pathname":"includes","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
998
|
+
{"data":{"leading":false,"html":"<p>Text</p>/n<p>Bob</p>/n<p>Test</p>/n/n<p>Bob</p>/n<p><a href=\\"../latex.html\\"><img src=\\"_assets/3.png\\" alt=\\"img 3\\" /></a></p>/n<p>Link after include<br />/n<a href=\\"1.html#subtitle\\">Subtitle</a></p>/n<p>Link after include</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"includes.md","sourcePath":"includes.md"},"headings":[],"title":""},"router":{"pathname":"includes","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1028
999
|
</script>
|
|
1029
1000
|
<script type="application/javascript">
|
|
1030
1001
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1034,15 +1005,11 @@ exports[`Regression > internal 36`] = `
|
|
|
1034
1005
|
window.STATIC_CONTENT = false;
|
|
1035
1006
|
</script>
|
|
1036
1007
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1037
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1038
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1039
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1040
|
-
|
|
1041
1008
|
</body>
|
|
1042
1009
|
</html>"
|
|
1043
1010
|
`;
|
|
1044
1011
|
|
|
1045
|
-
exports[`Regression > internal
|
|
1012
|
+
exports[`Regression > internal 40`] = `
|
|
1046
1013
|
"<!DOCTYPE html>
|
|
1047
1014
|
<html lang="ru" dir="ltr">
|
|
1048
1015
|
<head>
|
|
@@ -1051,17 +1018,12 @@ exports[`Regression > internal 37`] = `
|
|
|
1051
1018
|
<base href="./" />
|
|
1052
1019
|
<title></title>
|
|
1053
1020
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1054
|
-
|
|
1055
1021
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1059
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1060
1022
|
</head>
|
|
1061
1023
|
<body class="g-root g-root_theme_light">
|
|
1062
1024
|
<div id="root"></div>
|
|
1063
1025
|
<script type="application/json" id="diplodoc-state">
|
|
1064
|
-
{"data":{"leading":true,"data":{"description":["Some text"],"links":[{"name":"Link 1","href":"1.html"},{"name":"Link 2","href":"1/index.html"}]},"meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"title":""},"router":{"pathname":"index","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
1026
|
+
{"data":{"leading":true,"data":{"description":["Some text"],"links":[{"name":"Link 1","href":"1.html"},{"name":"Link 2","href":"1/index.html"}]},"meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"index.yaml","sourcePath":"index.yaml"},"title":""},"router":{"pathname":"index","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1065
1027
|
</script>
|
|
1066
1028
|
<script type="application/javascript">
|
|
1067
1029
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1071,15 +1033,11 @@ exports[`Regression > internal 37`] = `
|
|
|
1071
1033
|
window.STATIC_CONTENT = false;
|
|
1072
1034
|
</script>
|
|
1073
1035
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1074
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1075
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1076
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1077
|
-
|
|
1078
1036
|
</body>
|
|
1079
1037
|
</html>"
|
|
1080
1038
|
`;
|
|
1081
1039
|
|
|
1082
|
-
exports[`Regression > internal
|
|
1040
|
+
exports[`Regression > internal 41`] = `
|
|
1083
1041
|
"<!DOCTYPE html>
|
|
1084
1042
|
<html lang="ru" dir="ltr">
|
|
1085
1043
|
<head>
|
|
@@ -1088,18 +1046,12 @@ exports[`Regression > internal 38`] = `
|
|
|
1088
1046
|
<base href="./" />
|
|
1089
1047
|
<title>Latex usage</title>
|
|
1090
1048
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1091
|
-
|
|
1092
1049
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1096
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1097
|
-
<link type="text/css" rel="stylesheet" href="_bundle/latex-extension.css"/>
|
|
1098
1050
|
</head>
|
|
1099
1051
|
<body class="g-root g-root_theme_light">
|
|
1100
1052
|
<div id="root"></div>
|
|
1101
1053
|
<script type="application/json" id="diplodoc-state">
|
|
1102
|
-
{"data":{"leading":false,"html":"<p><span class=\\"yfm-latex\\" data-content=\\"%5Csqrt%7B3x-1%7D%2B(1%2Bx)%5E2\\" data-options=\\"%7B%22displayMode%22%3Afalse%7D\\"></span></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_bundle/latex-extension.css"],"script":["_bundle/latex-extension.js"]},"headings":[],"title":"Latex usage"},"router":{"pathname":"latex","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
1054
|
+
{"data":{"leading":false,"html":"<p><span class=\\"yfm-latex\\" data-content=\\"%5Csqrt%7B3x-1%7D%2B(1%2Bx)%5E2\\" data-options=\\"%7B%22displayMode%22%3Afalse%7D\\"></span></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_bundle/latex-extension.css"],"script":["_bundle/latex-extension.js"],"vcsPath":"latex.md","sourcePath":"latex.md"},"headings":[],"title":"Latex usage"},"router":{"pathname":"latex","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1103
1055
|
</script>
|
|
1104
1056
|
<script type="application/javascript">
|
|
1105
1057
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1109,16 +1061,11 @@ exports[`Regression > internal 38`] = `
|
|
|
1109
1061
|
window.STATIC_CONTENT = false;
|
|
1110
1062
|
</script>
|
|
1111
1063
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1112
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1113
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1114
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1115
|
-
<script type="application/javascript" defer src="_bundle/latex-extension.js"></script>
|
|
1116
|
-
|
|
1117
1064
|
</body>
|
|
1118
1065
|
</html>"
|
|
1119
1066
|
`;
|
|
1120
1067
|
|
|
1121
|
-
exports[`Regression > internal
|
|
1068
|
+
exports[`Regression > internal 42`] = `
|
|
1122
1069
|
"<!DOCTYPE html>
|
|
1123
1070
|
<html lang="ru" dir="ltr">
|
|
1124
1071
|
<head>
|
|
@@ -1127,17 +1074,12 @@ exports[`Regression > internal 39`] = `
|
|
|
1127
1074
|
<base href="../" />
|
|
1128
1075
|
<title>Should use merged item</title>
|
|
1129
1076
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1130
|
-
|
|
1131
1077
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1135
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1136
1078
|
</head>
|
|
1137
1079
|
<body class="g-root g-root_theme_light">
|
|
1138
1080
|
<div id="root"></div>
|
|
1139
1081
|
<script type="application/json" id="diplodoc-state">
|
|
1140
|
-
{"data":{"leading":false,"html":"<p><a href=\\"merge/merged.html\\">merged</a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Should use merged item"},"router":{"pathname":"merge/merge","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}
|
|
1082
|
+
{"data":{"leading":false,"html":"<p><a href=\\"merge/merged.html\\">merged</a></p>/n<p>Tool: Hammer and Laser</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"merge/merge.md","sourcePath":"merge/merge.md"},"headings":[],"title":"Should use merged item"},"router":{"pathname":"merge/merge","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1141
1083
|
</script>
|
|
1142
1084
|
<script type="application/javascript">
|
|
1143
1085
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1147,15 +1089,11 @@ exports[`Regression > internal 39`] = `
|
|
|
1147
1089
|
window.STATIC_CONTENT = false;
|
|
1148
1090
|
</script>
|
|
1149
1091
|
<script type="application/javascript" defer src="merge/toc.js"></script>
|
|
1150
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1151
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1152
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1153
|
-
|
|
1154
1092
|
</body>
|
|
1155
1093
|
</html>"
|
|
1156
1094
|
`;
|
|
1157
1095
|
|
|
1158
|
-
exports[`Regression > internal
|
|
1096
|
+
exports[`Regression > internal 43`] = `
|
|
1159
1097
|
"<!DOCTYPE html>
|
|
1160
1098
|
<html lang="ru" dir="ltr">
|
|
1161
1099
|
<head>
|
|
@@ -1164,17 +1102,12 @@ exports[`Regression > internal 40`] = `
|
|
|
1164
1102
|
<base href="../" />
|
|
1165
1103
|
<title>Merged item</title>
|
|
1166
1104
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1167
|
-
|
|
1168
1105
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1172
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1173
1106
|
</head>
|
|
1174
1107
|
<body class="g-root g-root_theme_light">
|
|
1175
1108
|
<div id="root"></div>
|
|
1176
1109
|
<script type="application/json" id="diplodoc-state">
|
|
1177
|
-
{"data":{"leading":false,"html":"<p>Should be linked in toc.yaml</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Merged item"},"router":{"pathname":"merge/merged","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}
|
|
1110
|
+
{"data":{"leading":false,"html":"<p>Should be linked in toc.yaml</p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"sourcePath":"merge-source/merged.md","vcsPath":"merge-source/merged.md"},"headings":[],"title":"Merged item"},"router":{"pathname":"merge/merged","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1178
1111
|
</script>
|
|
1179
1112
|
<script type="application/javascript">
|
|
1180
1113
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1184,17 +1117,13 @@ exports[`Regression > internal 40`] = `
|
|
|
1184
1117
|
window.STATIC_CONTENT = false;
|
|
1185
1118
|
</script>
|
|
1186
1119
|
<script type="application/javascript" defer src="merge/toc.js"></script>
|
|
1187
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1188
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1189
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1190
|
-
|
|
1191
1120
|
</body>
|
|
1192
1121
|
</html>"
|
|
1193
1122
|
`;
|
|
1194
1123
|
|
|
1195
|
-
exports[`Regression > internal
|
|
1124
|
+
exports[`Regression > internal 44`] = `"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"};"`;
|
|
1196
1125
|
|
|
1197
|
-
exports[`Regression > internal
|
|
1126
|
+
exports[`Regression > internal 45`] = `
|
|
1198
1127
|
"<!DOCTYPE html>
|
|
1199
1128
|
<html lang="ru" dir="ltr">
|
|
1200
1129
|
<head>
|
|
@@ -1203,17 +1132,12 @@ exports[`Regression > internal 42`] = `
|
|
|
1203
1132
|
<base href="./" />
|
|
1204
1133
|
<title>Mermaid usage</title>
|
|
1205
1134
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1206
|
-
|
|
1207
1135
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1211
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1212
1136
|
</head>
|
|
1213
1137
|
<body class="g-root g-root_theme_light">
|
|
1214
1138
|
<div id="root"></div>
|
|
1215
1139
|
<script type="application/json" id="diplodoc-state">
|
|
1216
|
-
{"data":{"leading":false,"html":"<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=\\"mermaid.html#info\\" class=\\"yfm-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","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"script":["_bundle/mermaid-extension.js"]},"headings":[{"title":"Mermaid info","href":"mermaid.html#info","level":2}],"title":"Mermaid usage"},"router":{"pathname":"mermaid","depth":1,"base":"./"},"lang":"ru","langs":["ru"]}
|
|
1140
|
+
{"data":{"leading":false,"html":"<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=\\"mermaid.html#info\\" class=\\"yfm-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","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"script":["_bundle/mermaid-extension.js"],"vcsPath":"mermaid.md","sourcePath":"mermaid.md"},"headings":[{"title":"Mermaid info","href":"mermaid.html#info","level":2}],"title":"Mermaid usage"},"router":{"pathname":"mermaid","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1217
1141
|
</script>
|
|
1218
1142
|
<script type="application/javascript">
|
|
1219
1143
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1223,16 +1147,11 @@ exports[`Regression > internal 42`] = `
|
|
|
1223
1147
|
window.STATIC_CONTENT = false;
|
|
1224
1148
|
</script>
|
|
1225
1149
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1226
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1227
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1228
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1229
|
-
<script type="application/javascript" defer src="_bundle/mermaid-extension.js"></script>
|
|
1230
|
-
|
|
1231
1150
|
</body>
|
|
1232
1151
|
</html>"
|
|
1233
1152
|
`;
|
|
1234
1153
|
|
|
1235
|
-
exports[`Regression > internal
|
|
1154
|
+
exports[`Regression > internal 46`] = `
|
|
1236
1155
|
"<!DOCTYPE html>
|
|
1237
1156
|
<html lang="ru" dir="ltr">
|
|
1238
1157
|
<head>
|
|
@@ -1241,18 +1160,13 @@ exports[`Regression > internal 43`] = `
|
|
|
1241
1160
|
<base href="../" />
|
|
1242
1161
|
<title>OpenAPI definition</title>
|
|
1243
1162
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1244
|
-
|
|
1245
1163
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1249
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1250
1164
|
<link type="text/css" rel="stylesheet" href="_assets/cut-extension.css"/>
|
|
1251
1165
|
</head>
|
|
1252
1166
|
<body class="g-root g-root_theme_light">
|
|
1253
1167
|
<div id="root"></div>
|
|
1254
1168
|
<script type="application/json" id="diplodoc-state">
|
|
1255
|
-
{"data":{"leading":false,"html":"<p><samp>version: v0</samp></p>/n<h2 id=\\"sections\\"><a href=\\"openapi/index.html#sections\\" class=\\"yfm-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\\" 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-clipboard\\">/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 },/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 }/n }/n}/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"21\\">/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-21\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-21\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-21.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n</div></details>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_assets/cut-extension.css"],"script":["_assets/cut-extension.js"]},"headings":[{"title":"Sections","href":"openapi/index.html#sections","level":2},{"title":"Specification","href":"openapi/index.html#specification","level":2}],"title":"OpenAPI definition"},"router":{"pathname":"openapi/index","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}
|
|
1169
|
+
{"data":{"leading":false,"html":"<p><samp>version: v0</samp></p>/n<h2 id=\\"sections\\"><a href=\\"openapi/index.html#sections\\" class=\\"yfm-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\\" 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-clipboard\\">/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 },/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 }/n }/n}/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"21\\">/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-21\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-21\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-21.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/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","sourcePath":"openapi/index.md"},"headings":[{"title":"Sections","href":"openapi/index.html#sections","level":2},{"title":"Specification","href":"openapi/index.html#specification","level":2}],"title":"OpenAPI definition"},"router":{"pathname":"openapi/index","depth":2,"base":"../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1256
1170
|
</script>
|
|
1257
1171
|
<script type="application/javascript">
|
|
1258
1172
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1262,16 +1176,12 @@ exports[`Regression > internal 43`] = `
|
|
|
1262
1176
|
window.STATIC_CONTENT = false;
|
|
1263
1177
|
</script>
|
|
1264
1178
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1265
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1266
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1267
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1268
1179
|
<script type="application/javascript" defer src="_assets/cut-extension.js"></script>
|
|
1269
|
-
|
|
1270
1180
|
</body>
|
|
1271
1181
|
</html>"
|
|
1272
1182
|
`;
|
|
1273
1183
|
|
|
1274
|
-
exports[`Regression > internal
|
|
1184
|
+
exports[`Regression > internal 47`] = `
|
|
1275
1185
|
"<!DOCTYPE html>
|
|
1276
1186
|
<html lang="ru" dir="ltr">
|
|
1277
1187
|
<head>
|
|
@@ -1280,18 +1190,13 @@ exports[`Regression > internal 44`] = `
|
|
|
1280
1190
|
<base href="../../" />
|
|
1281
1191
|
<title></title>
|
|
1282
1192
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1283
|
-
|
|
1284
1193
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1288
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1289
1194
|
<link type="text/css" rel="stylesheet" href="_assets/cut-extension.css"/>
|
|
1290
1195
|
</head>
|
|
1291
1196
|
<body class="g-root g-root_theme_light">
|
|
1292
1197
|
<div id="root"></div>
|
|
1293
1198
|
<script type="application/json" id="diplodoc-state">
|
|
1294
|
-
{"data":{"leading":false,"html":"<div class=\\"openapi\\">/n<h1>Simple get operation. тест новой верстки 3</h1>/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\\" 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-clipboard\\">/n <pre><code class=\\"hljs text\\">http://localhost:8080/test/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"16\\">/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-16\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-16\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-16.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/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\\" 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\\" 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\\" 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-clipboard\\">/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\\">\\"string\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"42\\">/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-42\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-42\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-42.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n</div></details><table>/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=\\"openapi-table-parameter-name\\">/n<p>A</p>/n</td>/n<td>/n<p><strong>Type:</strong> string</p>/n</td>/n</tr>/n</tbody>/n</table>/n</div>/n</div>/n/n</div>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":Deprecated_element\\" role=\\"dialog\\"><p>No longer supported, please use an alternative and newer version.</p>/n</dfn>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_assets/cut-extension.css"],"script":["_assets/cut-extension.js"]},"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"]}
|
|
1199
|
+
{"data":{"leading":false,"html":"<div class=\\"openapi\\">/n<h1>Simple get operation. тест новой верстки 3</h1>/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\\" 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-clipboard\\">/n <pre><code class=\\"hljs text\\">http://localhost:8080/test/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"16\\">/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-16\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-16\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-16.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/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\\" 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\\" 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\\" 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-clipboard\\">/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\\">\\"string\\"</span>/n<span class=\\"hljs-punctuation\\">}</span>/n</code></pre>/n/n <button class=\\"yfm-clipboard-button\\">/n <svg width=\\"16\\" height=\\"16\\" viewBox=\\"0 0 24 24\\" class=\\"yfm-clipboard-icon\\" data-animation=\\"42\\">/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-42\\" attributeName=\\"visibility\\" from=\\"hidden\\" to=\\"visible\\" dur=\\"0.2s\\" fill=\\"freeze\\" begin></animate>/n <animate id=\\"hideAnimation-42\\" attributeName=\\"visibility\\" from=\\"visible\\" to=\\"hidden\\" dur=\\"1s\\" begin=\\"visibileAnimation-42.end+1\\" fill=\\"freeze\\"></animate>/n </path>/n </svg>/n </button>/n </div>/n</div></details><table>/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=\\"openapi-table-parameter-name\\">/n<p>A</p>/n</td>/n<td>/n<p><strong>Type:</strong> string</p>/n</td>/n</tr>/n</tbody>/n</table>/n</div>/n</div>/n/n</div>/n<dfn class=\\"yfm yfm-term_dfn\\" id=\\":Deprecated_element\\" role=\\"dialog\\"><p>No longer supported, please use an alternative and newer version.</p>/n</dfn>","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_assets/cut-extension.css"],"script":["_assets/cut-extension.js"],"vcsPath":"openapi/test-controller/getWithPayloadResponse.md","sourcePath":"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}}
|
|
1295
1200
|
</script>
|
|
1296
1201
|
<script type="application/javascript">
|
|
1297
1202
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1301,16 +1206,12 @@ exports[`Regression > internal 44`] = `
|
|
|
1301
1206
|
window.STATIC_CONTENT = false;
|
|
1302
1207
|
</script>
|
|
1303
1208
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1304
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1305
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1306
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1307
1209
|
<script type="application/javascript" defer src="_assets/cut-extension.js"></script>
|
|
1308
|
-
|
|
1309
1210
|
</body>
|
|
1310
1211
|
</html>"
|
|
1311
1212
|
`;
|
|
1312
1213
|
|
|
1313
|
-
exports[`Regression > internal
|
|
1214
|
+
exports[`Regression > internal 48`] = `
|
|
1314
1215
|
"<!DOCTYPE html>
|
|
1315
1216
|
<html lang="ru" dir="ltr">
|
|
1316
1217
|
<head>
|
|
@@ -1319,17 +1220,12 @@ exports[`Regression > internal 45`] = `
|
|
|
1319
1220
|
<base href="../../" />
|
|
1320
1221
|
<title>test-controller</title>
|
|
1321
1222
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1322
|
-
|
|
1323
1223
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1327
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1328
1224
|
</head>
|
|
1329
1225
|
<body class="g-root g-root_theme_light">
|
|
1330
1226
|
<div id="root"></div>
|
|
1331
1227
|
<script type="application/json" id="diplodoc-state">
|
|
1332
|
-
{"data":{"leading":false,"html":"<h2 id=\\"endpoints\\"><a href=\\"openapi/test-controller/index.html#endpoints\\" class=\\"yfm-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Endpoints</span></a>Endpoints</h2>/n<ul>/n<li><a href=\\"openapi/test-controller/getWithPayloadResponse.html\\">Simple get operation. тест новой верстки 3</a></li>/n</ul>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[{"title":"Endpoints","href":"openapi/test-controller/index.html#endpoints","level":2}],"title":"test-controller"},"router":{"pathname":"openapi/test-controller/index","depth":3,"base":"../../"},"lang":"ru","langs":["ru"]}
|
|
1228
|
+
{"data":{"leading":false,"html":"<h2 id=\\"endpoints\\"><a href=\\"openapi/test-controller/index.html#endpoints\\" class=\\"yfm-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Endpoints</span></a>Endpoints</h2>/n<ul>/n<li><a href=\\"openapi/test-controller/getWithPayloadResponse.html\\">Simple get operation. тест новой верстки 3</a></li>/n</ul>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"openapi/test-controller/index.md","sourcePath":"openapi/test-controller/index.md"},"headings":[{"title":"Endpoints","href":"openapi/test-controller/index.html#endpoints","level":2}],"title":"test-controller"},"router":{"pathname":"openapi/test-controller/index","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1333
1229
|
</script>
|
|
1334
1230
|
<script type="application/javascript">
|
|
1335
1231
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1339,15 +1235,11 @@ exports[`Regression > internal 45`] = `
|
|
|
1339
1235
|
window.STATIC_CONTENT = false;
|
|
1340
1236
|
</script>
|
|
1341
1237
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1342
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1343
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1344
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1345
|
-
|
|
1346
1238
|
</body>
|
|
1347
1239
|
</html>"
|
|
1348
1240
|
`;
|
|
1349
1241
|
|
|
1350
|
-
exports[`Regression > internal
|
|
1242
|
+
exports[`Regression > internal 49`] = `
|
|
1351
1243
|
"<!DOCTYPE html>
|
|
1352
1244
|
<html lang="ru" dir="ltr">
|
|
1353
1245
|
<head>
|
|
@@ -1356,17 +1248,12 @@ exports[`Regression > internal 46`] = `
|
|
|
1356
1248
|
<base href="../../" />
|
|
1357
1249
|
<title>Item 1</title>
|
|
1358
1250
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
1359
|
-
|
|
1360
1251
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
<link type="text/css" rel="stylesheet" href="_bundle/search-css-1"/>
|
|
1364
|
-
<link type="text/css" rel="stylesheet" href="_bundle/app-css-1"/>
|
|
1365
1252
|
</head>
|
|
1366
1253
|
<body class="g-root g-root_theme_light">
|
|
1367
1254
|
<div id="root"></div>
|
|
1368
1255
|
<script type="application/json" id="diplodoc-state">
|
|
1369
|
-
{"data":{"leading":false,"html":"<p>Item 1 text</p>/n<p><a href=\\"images.html\\">Images</a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}]},"headings":[],"title":"Item 1"},"router":{"pathname":"sub/folder/item-1","depth":3,"base":"../../"},"lang":"ru","langs":["ru"]}
|
|
1256
|
+
{"data":{"leading":false,"html":"<p>Item 1 text</p>/n<p><a href=\\"images.html\\">Images</a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"vcsPath":"sub/folder/item-1.md","sourcePath":"sub/folder/item-1.md"},"headings":[],"title":"Item 1"},"router":{"pathname":"sub/folder/item-1","depth":3,"base":"../../"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
1370
1257
|
</script>
|
|
1371
1258
|
<script type="application/javascript">
|
|
1372
1259
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -1376,12 +1263,8 @@ exports[`Regression > internal 46`] = `
|
|
|
1376
1263
|
window.STATIC_CONTENT = false;
|
|
1377
1264
|
</script>
|
|
1378
1265
|
<script type="application/javascript" defer src="toc.js"></script>
|
|
1379
|
-
<script type="application/javascript" defer src="_bundle/search-js-0"></script>
|
|
1380
|
-
<script type="application/javascript" defer src="_bundle/app-js-1"></script>
|
|
1381
|
-
<script type="application/javascript" defer src="_bundle/search-js-2"></script>
|
|
1382
|
-
|
|
1383
1266
|
</body>
|
|
1384
1267
|
</html>"
|
|
1385
1268
|
`;
|
|
1386
1269
|
|
|
1387
|
-
exports[`Regression > internal
|
|
1270
|
+
exports[`Regression > internal 50`] = `"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":"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":"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"}],"id":"UUID"}],"id":"UUID"}],"path":"toc.yaml","id":"UUID"};"`;
|