@diplodoc/cli-tests 0.0.0-rc-fix-translate-openapi-includer-202507171205 → 0.0.0-rc-liquid-conditions-saving-202509050811

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.
Files changed (108) hide show
  1. package/e2e/__snapshots__/generate-map.spec.ts.snap +345 -0
  2. package/e2e/__snapshots__/include-toc.test.ts.snap +8 -0
  3. package/e2e/__snapshots__/load-custom-resources.spec.ts.snap +64 -59
  4. package/e2e/__snapshots__/metadata.spec.ts.snap +29 -24
  5. package/e2e/__snapshots__/preprocess.test.ts.snap +549 -0
  6. package/e2e/__snapshots__/regression.test.ts.snap +177 -142
  7. package/e2e/__snapshots__/rtl.spec.ts.snap +44 -41
  8. package/e2e/__snapshots__/search.test.ts.snap +37 -22
  9. package/e2e/__snapshots__/skip-html-extension.spec.ts.snap +211 -0
  10. package/e2e/__snapshots__/translation.spec.ts.snap +518 -2
  11. package/e2e/errors.spec.ts +33 -2
  12. package/e2e/generate-map.spec.ts +9 -3
  13. package/e2e/preprocess.test.ts +33 -0
  14. package/e2e/redirects-validation.spec.ts +61 -0
  15. package/e2e/search.test.ts +1 -1
  16. package/e2e/skip-html-extension.spec.ts +15 -0
  17. package/e2e/translation.spec.ts +47 -2
  18. package/fixtures/cliAdapter.ts +23 -0
  19. package/fixtures/globals.d.ts +4 -0
  20. package/fixtures/runners/binary.ts +4 -3
  21. package/fixtures/runners/types.ts +1 -2
  22. package/fixtures/utils/file.ts +5 -5
  23. package/fixtures/utils/test.ts +17 -8
  24. package/mocks/docs-viewer-interface/input/.yfm +6 -0
  25. package/mocks/docs-viewer-interface/input/index.md +3 -0
  26. package/mocks/docs-viewer-interface/input/toc.yaml +5 -0
  27. package/mocks/errors/extract-filtered-link/input/filtered.md +1 -0
  28. package/mocks/errors/extract-filtered-link/input/filtered2.md +0 -0
  29. package/mocks/errors/extract-filtered-link/input/index.md +7 -0
  30. package/mocks/errors/extract-filtered-link/input/toc.yaml +1 -0
  31. package/mocks/load-custom-resources/md2html-with-resources/input/page.md +9 -2
  32. package/mocks/load-custom-resources/md2md-with-resources/input/page.md +9 -2
  33. package/mocks/load-custom-resources/single-page-with-resources/input/page.md +9 -2
  34. package/mocks/metadata/md2html-with-metadata/input/page.md +8 -1
  35. package/mocks/metadata/md2md-with-metadata/input/page.md +7 -0
  36. package/mocks/preprocess/input/.yfm +1 -0
  37. package/mocks/preprocess/input/1.md +29 -0
  38. package/mocks/preprocess/input/_assets/1.png +0 -0
  39. package/mocks/preprocess/input/_assets/1.svg +0 -0
  40. package/mocks/preprocess/input/autotitle.md +23 -0
  41. package/mocks/preprocess/input/commented-include.md +3 -0
  42. package/mocks/preprocess/input/images.md +5 -0
  43. package/mocks/preprocess/input/included-item.md +12 -0
  44. package/mocks/preprocess/input/includes/deep.md +1 -0
  45. package/mocks/preprocess/input/includes/deepWithIndent.md +6 -0
  46. package/mocks/preprocess/input/includes/presets.yaml +2 -0
  47. package/mocks/preprocess/input/includes/sub/user.md +1 -0
  48. package/mocks/preprocess/input/includes/sub/userWithIndent.md +5 -0
  49. package/mocks/preprocess/input/includes/test.md +1 -0
  50. package/mocks/preprocess/input/includes/user.md +1 -0
  51. package/mocks/preprocess/input/includes.md +18 -0
  52. package/mocks/preprocess/input/latex.md +3 -0
  53. package/mocks/preprocess/input/mermaid.md +13 -0
  54. package/mocks/preprocess/input/presets.yaml +8 -0
  55. package/mocks/preprocess/input/sub/folder/item-1.md +7 -0
  56. package/mocks/preprocess/input/sub/toc.yaml +5 -0
  57. package/mocks/preprocess/input/toc-i.yaml +3 -0
  58. package/mocks/preprocess/input/toc.yaml +16 -0
  59. package/mocks/redirects-validation/extensions-deprecation/input/blah.md +0 -0
  60. package/mocks/redirects-validation/extensions-deprecation/input/redirects.yaml +5 -0
  61. package/mocks/redirects-validation/extensions-deprecation/input/toc.yaml +4 -0
  62. package/mocks/redirects-validation/invalid-regex/input/blah.md +0 -0
  63. package/mocks/redirects-validation/invalid-regex/input/redirects.yaml +3 -0
  64. package/mocks/redirects-validation/invalid-regex/input/toc.yaml +4 -0
  65. package/mocks/redirects-validation/malformed-redirect/input/blah.md +0 -0
  66. package/mocks/redirects-validation/malformed-redirect/input/redirects.yaml +6 -0
  67. package/mocks/redirects-validation/malformed-redirect/input/toc.yaml +4 -0
  68. package/mocks/redirects-validation/same-path/input/blah.md +0 -0
  69. package/mocks/redirects-validation/same-path/input/redirects.yaml +3 -0
  70. package/mocks/redirects-validation/same-path/input/toc.yaml +4 -0
  71. package/mocks/redirects-validation/unparseable/input/blah.md +0 -0
  72. package/mocks/redirects-validation/unparseable/input/redirects.yaml +11 -0
  73. package/mocks/redirects-validation/unparseable/input/toc.yaml +4 -0
  74. package/mocks/regression/input/.yfm +2 -0
  75. package/mocks/regression/input/images.md +2 -0
  76. package/mocks/regression/input/includes/deep.md +2 -0
  77. package/mocks/regression/input/includes/presets.yaml +1 -0
  78. package/mocks/regression/input/includes/tools.md +1 -0
  79. package/mocks/regression/input/includes.md +5 -0
  80. package/mocks/regression/input/merge/merge.md +2 -0
  81. package/mocks/regression/input/merge/presets.yaml +1 -0
  82. package/mocks/regression/input/merge/toc.yaml +2 -0
  83. package/mocks/regression/input/presets.yaml +1 -0
  84. package/mocks/regression/input/toc.yaml +2 -0
  85. package/mocks/search/input/.yfm +12 -0
  86. package/mocks/skip-html-extension/input/.yfm +1 -0
  87. package/mocks/skip-html-extension/input/folder/index.md +1 -0
  88. package/mocks/skip-html-extension/input/index-test-html/index.md +4 -0
  89. package/mocks/skip-html-extension/input/index.md +6 -0
  90. package/mocks/skip-html-extension/input/page1.md +3 -0
  91. package/mocks/skip-html-extension/input/page2.md +6 -0
  92. package/mocks/skip-html-extension/input/toc.yaml +13 -0
  93. package/mocks/translation/conditions/input/index.md +37 -0
  94. package/mocks/translation/dir-files/input/.yfm +6 -0
  95. package/mocks/translation/dir-files/input/ru/aboba.md +2 -4
  96. package/mocks/translation/dir-files/input/ru/nested/a1.md +3 -0
  97. package/mocks/translation/dir-files/input/ru/nested/folder1/a1.md +3 -0
  98. package/mocks/translation/dir-files/input/ru/nested/folder1/toc-i.yaml +3 -0
  99. package/mocks/translation/dir-files/input/ru/nested/syntax/base.md +2 -0
  100. package/mocks/translation/dir-files/input/ru/nested/toc.yaml +1 -0
  101. package/mocks/translation/dir-files/input/ru/no-var-page.md +3 -0
  102. package/mocks/translation/dir-files/input/ru/to-be-excluded.md +1 -0
  103. package/mocks/translation/dir-files/input/ru/toc.yaml +7 -1
  104. package/mocks/translation/openapi/input/toc.yaml +1 -1
  105. package/mocks/warning/unreachable-autotitle/input/index.md +1 -0
  106. package/mocks/warning/unreachable-autotitle/input/link.md +0 -0
  107. package/mocks/warning/unreachable-autotitle/input/toc.yaml +4 -0
  108. package/package.json +5 -5
@@ -0,0 +1,549 @@
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
+
3
+ exports[`Preprocess > HashIncludes=true,Autotitles=false > filelist 1`] = `
4
+ "[
5
+ ".yfm",
6
+ "1.md",
7
+ "_assets/1.png",
8
+ "_assets/1.svg",
9
+ "autotitle.md",
10
+ "images.md",
11
+ "included-item.md",
12
+ "includes.md",
13
+ "includes/deep-hash.md",
14
+ "includes/deepWithIndent-hash.md",
15
+ "includes/sub/user-hash.md",
16
+ "includes/sub/userWithIndent-hash.md",
17
+ "includes/test-hash.md",
18
+ "includes/user-hash.md",
19
+ "latex.md",
20
+ "mermaid.md",
21
+ "sub/folder/item-1.md",
22
+ "toc.yaml"
23
+ ]"
24
+ `;
25
+
26
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 1`] = `
27
+ "allowHtml: true
28
+ "
29
+ `;
30
+
31
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 2`] = `
32
+ "---
33
+ metadata:
34
+ - name: generator
35
+ content: Diplodoc Platform vDIPLODOC-VERSION
36
+ ---
37
+ # Title
38
+
39
+ Text not_var{{not-var}} not_var{{skip()}} default-var-value
40
+
41
+ Text \`not_var{{not-var}}\` \`not_var{{skip()}}\` \`default-var-value\`
42
+
43
+ Text
44
+ \`\`\`
45
+ not_var{{not-var}}
46
+
47
+ not_var{{skip()}}
48
+
49
+ default-var-value
50
+ \`\`\`
51
+
52
+
53
+ \`[not a link](./path/to/relative/file.md)\`
54
+
55
+ ## Subtitle {#subtitle}
56
+
57
+ [{#T}](mermaid.md)
58
+
59
+ [{#T}](mermaid.md#info)
60
+
61
+ [](latex.md)
62
+
63
+ [noext-link](includes)
64
+
65
+ {% include [user](includes/user-hash.md) %}
66
+ "
67
+ `;
68
+
69
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 3`] = `
70
+ "---
71
+ metadata:
72
+ - name: generator
73
+ content: Diplodoc Platform vDIPLODOC-VERSION
74
+ ---
75
+ # Autotitles ![](_assets/1.svg)
76
+
77
+ Empty title
78
+ [](./1.md)
79
+
80
+ Empty subtitle
81
+ [](./1.md#subtitle)
82
+
83
+ Special title
84
+ [{#T}](./1.md)
85
+
86
+ Special subtitle
87
+ [{#T}](./1.md#subtitle)
88
+
89
+ Empty local title
90
+ [](#header)
91
+
92
+ Special local title
93
+ [{#T}](#header)
94
+
95
+ ## Header {#header}
96
+
97
+ Content
98
+ "
99
+ `;
100
+
101
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 4`] = `
102
+ "---
103
+ metadata:
104
+ - name: generator
105
+ content: Diplodoc Platform vDIPLODOC-VERSION
106
+ ---
107
+ # Images
108
+
109
+ ![simple image](_assets/1.png)
110
+
111
+
112
+ "
113
+ `;
114
+
115
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 5`] = `
116
+ "---
117
+ metadata:
118
+ - name: generator
119
+ content: Diplodoc Platform vDIPLODOC-VERSION
120
+ ---
121
+ # Included item
122
+
123
+ Included item text
124
+
125
+ <!-- : {% include [rec-off](./commented-include.md) %} -->
126
+
127
+ {% note alert "Alert!" %}
128
+
129
+ <!-- content -->
130
+
131
+ {% endnote %}
132
+
133
+ "
134
+ `;
135
+
136
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 6`] = `
137
+ "---
138
+ metadata:
139
+ - name: generator
140
+ content: Diplodoc Platform vDIPLODOC-VERSION
141
+ ---
142
+ Text
143
+
144
+ {% include [user](includes/user-hash.md) %}
145
+
146
+ {% include [test](includes/test-hash.md) %}
147
+
148
+ Link after include
149
+ [{#T}](./1.md)
150
+
151
+ <!--{% include [For includes/deep.md](includes/deep.md) %}-->
152
+ {% include [For includes/deep-hash.md](includes/deep-hash.md) %}
153
+
154
+ Include with big indent
155
+
156
+ {% include [For includes/deep.md](includes/deepWithIndent-hash.md) %}
157
+
158
+ Link after include
159
+ [{#T}](./1.md#subtitle)
160
+ "
161
+ `;
162
+
163
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 7`] = `
164
+ "{% include [user](sub/user-hash.md) %}
165
+ "
166
+ `;
167
+
168
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 8`] = `
169
+ "- list item
170
+
171
+ {% include [user](sub/userWithIndent-hash.md) %}
172
+
173
+ Link to mermaid diagram from 1 level
174
+ [](../mermaid.md)
175
+ "
176
+ `;
177
+
178
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 9`] = `
179
+ "Bob
180
+ "
181
+ `;
182
+
183
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 10`] = `
184
+ "Link to mermaid diagram from 2 level
185
+ [](../../mermaid.md)
186
+
187
+ - User
188
+ Bob"
189
+ `;
190
+
191
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 11`] = `
192
+ "Test
193
+ "
194
+ `;
195
+
196
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 12`] = `
197
+ "Bob
198
+ "
199
+ `;
200
+
201
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 13`] = `
202
+ "---
203
+ metadata:
204
+ - name: generator
205
+ content: Diplodoc Platform vDIPLODOC-VERSION
206
+ ---
207
+ # Latex usage
208
+
209
+ $/sqrt{3x-1}+(1+x)^2$
210
+ "
211
+ `;
212
+
213
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 14`] = `
214
+ "---
215
+ metadata:
216
+ - name: generator
217
+ content: Diplodoc Platform vDIPLODOC-VERSION
218
+ ---
219
+ # Mermaid usage
220
+
221
+ \`\`\`mermaid
222
+
223
+ sequenceDiagram
224
+ rect rgba(251, 243, 232, 0.2)
225
+ Alice ->> Bob:
226
+ end
227
+ \`\`\`
228
+
229
+ ## Mermaid info {#info}
230
+
231
+ Some mermaid info
232
+ "
233
+ `;
234
+
235
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 15`] = `
236
+ "---
237
+ metadata:
238
+ - name: generator
239
+ content: Diplodoc Platform vDIPLODOC-VERSION
240
+ ---
241
+ # Item 1
242
+
243
+ Item 1 text
244
+
245
+ [{#T}](../../images.md)
246
+
247
+ [{#T}](../../autotitle.md)
248
+ "
249
+ `;
250
+
251
+ exports[`Preprocess > HashIncludes=true,Autotitles=false 16`] = `
252
+ "items:
253
+ - name: Md item with not_var syntax
254
+ href: 1.md
255
+ - name: Md item named without extension
256
+ href: 1.md
257
+ - name: Included Item
258
+ href: included-item.md
259
+ - name: Named include (items is Object here - this is not an error)
260
+ items:
261
+ - name: Item 1
262
+ href: sub/folder/item-1.md
263
+ - href: mermaid.md
264
+ name: Mermaid usage
265
+ - name: Latex usage
266
+ href: latex.md
267
+ - name: Images
268
+ href: images.md
269
+ - name: Autotitle
270
+ href: autotitle.md
271
+ - name: includes
272
+ href: includes.md
273
+ path: toc.yaml
274
+ "
275
+ `;
276
+
277
+ exports[`Preprocess > HashIncludes=true,Autotitles=true > filelist 1`] = `
278
+ "[
279
+ ".yfm",
280
+ "1.md",
281
+ "_assets/1.png",
282
+ "_assets/1.svg",
283
+ "autotitle.md",
284
+ "images.md",
285
+ "included-item.md",
286
+ "includes.md",
287
+ "includes/deep-hash.md",
288
+ "includes/deepWithIndent-hash.md",
289
+ "includes/sub/user-hash.md",
290
+ "includes/sub/userWithIndent-hash.md",
291
+ "includes/test-hash.md",
292
+ "includes/user-hash.md",
293
+ "latex.md",
294
+ "mermaid.md",
295
+ "sub/folder/item-1.md",
296
+ "toc.yaml"
297
+ ]"
298
+ `;
299
+
300
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 1`] = `
301
+ "allowHtml: true
302
+ "
303
+ `;
304
+
305
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 2`] = `
306
+ "---
307
+ metadata:
308
+ - name: generator
309
+ content: Diplodoc Platform vDIPLODOC-VERSION
310
+ ---
311
+ # Title
312
+
313
+ Text not_var{{not-var}} not_var{{skip()}} default-var-value
314
+
315
+ Text \`not_var{{not-var}}\` \`not_var{{skip()}}\` \`default-var-value\`
316
+
317
+ Text
318
+ \`\`\`
319
+ not_var{{not-var}}
320
+
321
+ not_var{{skip()}}
322
+
323
+ default-var-value
324
+ \`\`\`
325
+
326
+
327
+ \`[not a link](./path/to/relative/file.md)\`
328
+
329
+ ## Subtitle {#subtitle}
330
+
331
+ [Mermaid usage](mermaid.md)
332
+
333
+ [Mermaid info](mermaid.md#info)
334
+
335
+ [Latex usage](latex.md)
336
+
337
+ [noext-link](includes)
338
+
339
+ {% include [user](includes/user-hash.md) %}
340
+ "
341
+ `;
342
+
343
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 3`] = `
344
+ "---
345
+ metadata:
346
+ - name: generator
347
+ content: Diplodoc Platform vDIPLODOC-VERSION
348
+ ---
349
+ # Autotitles ![](_assets/1.svg)
350
+
351
+ Empty title
352
+ [Title](./1.md)
353
+
354
+ Empty subtitle
355
+ [Subtitle](./1.md#subtitle)
356
+
357
+ Special title
358
+ [Title](./1.md)
359
+
360
+ Special subtitle
361
+ [Subtitle](./1.md#subtitle)
362
+
363
+ Empty local title
364
+ [Header](#header)
365
+
366
+ Special local title
367
+ [Header](#header)
368
+
369
+ ## Header {#header}
370
+
371
+ Content
372
+ "
373
+ `;
374
+
375
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 4`] = `
376
+ "---
377
+ metadata:
378
+ - name: generator
379
+ content: Diplodoc Platform vDIPLODOC-VERSION
380
+ ---
381
+ # Images
382
+
383
+ ![simple image](_assets/1.png)
384
+
385
+
386
+ "
387
+ `;
388
+
389
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 5`] = `
390
+ "---
391
+ metadata:
392
+ - name: generator
393
+ content: Diplodoc Platform vDIPLODOC-VERSION
394
+ ---
395
+ # Included item
396
+
397
+ Included item text
398
+
399
+ <!-- : {% include [rec-off](./commented-include.md) %} -->
400
+
401
+ {% note alert "Alert!" %}
402
+
403
+ <!-- content -->
404
+
405
+ {% endnote %}
406
+
407
+ "
408
+ `;
409
+
410
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 6`] = `
411
+ "---
412
+ metadata:
413
+ - name: generator
414
+ content: Diplodoc Platform vDIPLODOC-VERSION
415
+ ---
416
+ Text
417
+
418
+ {% include [user](includes/user-hash.md) %}
419
+
420
+ {% include [test](includes/test-hash.md) %}
421
+
422
+ Link after include
423
+ [Title](./1.md)
424
+
425
+ <!--{% include [For includes/deep.md](includes/deep.md) %}-->
426
+ {% include [For includes/deep-hash.md](includes/deep-hash.md) %}
427
+
428
+ Include with big indent
429
+
430
+ {% include [For includes/deep.md](includes/deepWithIndent-hash.md) %}
431
+
432
+ Link after include
433
+ [Subtitle](./1.md#subtitle)
434
+ "
435
+ `;
436
+
437
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 7`] = `
438
+ "{% include [user](sub/user-hash.md) %}
439
+ "
440
+ `;
441
+
442
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 8`] = `
443
+ "- list item
444
+
445
+ {% include [user](sub/userWithIndent-hash.md) %}
446
+
447
+ Link to mermaid diagram from 1 level
448
+ [Mermaid usage](../mermaid.md)
449
+ "
450
+ `;
451
+
452
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 9`] = `
453
+ "Bob
454
+ "
455
+ `;
456
+
457
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 10`] = `
458
+ "Link to mermaid diagram from 2 level
459
+ [Mermaid usage](../../mermaid.md)
460
+
461
+ - User
462
+ Bob"
463
+ `;
464
+
465
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 11`] = `
466
+ "Test
467
+ "
468
+ `;
469
+
470
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 12`] = `
471
+ "Bob
472
+ "
473
+ `;
474
+
475
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 13`] = `
476
+ "---
477
+ metadata:
478
+ - name: generator
479
+ content: Diplodoc Platform vDIPLODOC-VERSION
480
+ ---
481
+ # Latex usage
482
+
483
+ $/sqrt{3x-1}+(1+x)^2$
484
+ "
485
+ `;
486
+
487
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 14`] = `
488
+ "---
489
+ metadata:
490
+ - name: generator
491
+ content: Diplodoc Platform vDIPLODOC-VERSION
492
+ ---
493
+ # Mermaid usage
494
+
495
+ \`\`\`mermaid
496
+
497
+ sequenceDiagram
498
+ rect rgba(251, 243, 232, 0.2)
499
+ Alice ->> Bob:
500
+ end
501
+ \`\`\`
502
+
503
+ ## Mermaid info {#info}
504
+
505
+ Some mermaid info
506
+ "
507
+ `;
508
+
509
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 15`] = `
510
+ "---
511
+ metadata:
512
+ - name: generator
513
+ content: Diplodoc Platform vDIPLODOC-VERSION
514
+ ---
515
+ # Item 1
516
+
517
+ Item 1 text
518
+
519
+ [Images](../../images.md)
520
+
521
+ [Autotitles ![../../_assets/1.svg](../../autotitle.md)
522
+ "
523
+ `;
524
+
525
+ exports[`Preprocess > HashIncludes=true,Autotitles=true 16`] = `
526
+ "items:
527
+ - name: Md item with not_var syntax
528
+ href: 1.md
529
+ - name: Md item named without extension
530
+ href: 1.md
531
+ - name: Included Item
532
+ href: included-item.md
533
+ - name: Named include (items is Object here - this is not an error)
534
+ items:
535
+ - name: Item 1
536
+ href: sub/folder/item-1.md
537
+ - href: mermaid.md
538
+ name: Mermaid usage
539
+ - name: Latex usage
540
+ href: latex.md
541
+ - name: Images
542
+ href: images.md
543
+ - name: Autotitle
544
+ href: autotitle.md
545
+ - name: includes
546
+ href: includes.md
547
+ path: toc.yaml
548
+ "
549
+ `;