@cloudcannon/configuration-types 0.0.7 → 0.0.9
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/README.md +1 -1
- package/build/cloudcannon-config-eleventy.json +1122 -1425
- package/build/cloudcannon-config-hugo.json +720 -1029
- package/build/cloudcannon-config-jekyll.json +923 -1231
- package/build/{cloudcannon-config-default.json → cloudcannon-config-reader.json} +1180 -1509
- package/build/cloudcannon-config.json +939 -2630
- package/package.json +6 -6
- package/src/build-coupled.d.ts +181 -0
- package/src/configuration.d.ts +1594 -0
- package/src/index.d.ts +7 -1702
|
@@ -157,6 +157,16 @@
|
|
|
157
157
|
},
|
|
158
158
|
"type": "object"
|
|
159
159
|
},
|
|
160
|
+
"AttributeListPosition": {
|
|
161
|
+
"enum": [
|
|
162
|
+
"none",
|
|
163
|
+
"right",
|
|
164
|
+
"space right",
|
|
165
|
+
"below",
|
|
166
|
+
"newline below"
|
|
167
|
+
],
|
|
168
|
+
"type": "string"
|
|
169
|
+
},
|
|
160
170
|
"BaseInput": {
|
|
161
171
|
"additionalProperties": false,
|
|
162
172
|
"properties": {
|
|
@@ -289,8 +299,18 @@
|
|
|
289
299
|
"type": "string"
|
|
290
300
|
},
|
|
291
301
|
"code": {
|
|
292
|
-
"description": "Enables
|
|
293
|
-
"markdownDescription": "Enables
|
|
302
|
+
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
303
|
+
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
304
|
+
"type": "boolean"
|
|
305
|
+
},
|
|
306
|
+
"code_block": {
|
|
307
|
+
"description": "Enables a control to insert a code block.",
|
|
308
|
+
"markdownDescription": "Enables a control to insert a code block.",
|
|
309
|
+
"type": "boolean"
|
|
310
|
+
},
|
|
311
|
+
"code_inline": {
|
|
312
|
+
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
313
|
+
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
294
314
|
"type": "boolean"
|
|
295
315
|
},
|
|
296
316
|
"copyformatting": {
|
|
@@ -298,12 +318,6 @@
|
|
|
298
318
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
299
319
|
"type": "boolean"
|
|
300
320
|
},
|
|
301
|
-
"correct_orientation": {
|
|
302
|
-
"default": true,
|
|
303
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
304
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
305
|
-
"type": "boolean"
|
|
306
|
-
},
|
|
307
321
|
"embed": {
|
|
308
322
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
309
323
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
@@ -370,7 +384,8 @@
|
|
|
370
384
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
371
385
|
"enum": [
|
|
372
386
|
"image/jpeg",
|
|
373
|
-
"image/png"
|
|
387
|
+
"image/png",
|
|
388
|
+
"image/webp"
|
|
374
389
|
],
|
|
375
390
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
376
391
|
"type": "string"
|
|
@@ -500,6 +515,206 @@
|
|
|
500
515
|
},
|
|
501
516
|
"type": "object"
|
|
502
517
|
},
|
|
518
|
+
"BuildCoupledCollectionConfig": {
|
|
519
|
+
"additionalProperties": false,
|
|
520
|
+
"properties": {
|
|
521
|
+
"_array_structures": {
|
|
522
|
+
"additionalProperties": {},
|
|
523
|
+
"deprecated": "Use _structures instead.",
|
|
524
|
+
"description": "Now known as _structures.",
|
|
525
|
+
"markdownDescription": "Now known as _structures.",
|
|
526
|
+
"type": "object"
|
|
527
|
+
},
|
|
528
|
+
"_comments": {
|
|
529
|
+
"additionalProperties": {
|
|
530
|
+
"type": "string"
|
|
531
|
+
},
|
|
532
|
+
"deprecated": "Use _inputs instead.",
|
|
533
|
+
"description": "Now part of _inputs.*.comment.",
|
|
534
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
535
|
+
"type": "object"
|
|
536
|
+
},
|
|
537
|
+
"_editables": {
|
|
538
|
+
"$ref": "#/definitions/Editables",
|
|
539
|
+
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
540
|
+
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
541
|
+
},
|
|
542
|
+
"_enabled_editors": {
|
|
543
|
+
"description": "Set a preferred editor and/or disable the others. The first value sets which editor opens by default, and the following values specify which editors are accessible.",
|
|
544
|
+
"items": {
|
|
545
|
+
"$ref": "#/definitions/EditorKey"
|
|
546
|
+
},
|
|
547
|
+
"markdownDescription": "Set a preferred editor and/or disable the others. The first value sets which editor opens by\ndefault, and the following values specify which editors are accessible.",
|
|
548
|
+
"type": "array"
|
|
549
|
+
},
|
|
550
|
+
"_inputs": {
|
|
551
|
+
"additionalProperties": {
|
|
552
|
+
"$ref": "#/definitions/Input"
|
|
553
|
+
},
|
|
554
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
555
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
556
|
+
"type": "object"
|
|
557
|
+
},
|
|
558
|
+
"_options": {
|
|
559
|
+
"additionalProperties": {
|
|
560
|
+
"additionalProperties": {},
|
|
561
|
+
"type": "object"
|
|
562
|
+
},
|
|
563
|
+
"deprecated": "Use _inputs instead.",
|
|
564
|
+
"description": "Now part of _inputs.*.options.",
|
|
565
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
566
|
+
"type": "object"
|
|
567
|
+
},
|
|
568
|
+
"_select_data": {
|
|
569
|
+
"additionalProperties": {
|
|
570
|
+
"$ref": "#/definitions/SelectValues"
|
|
571
|
+
},
|
|
572
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
573
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
574
|
+
"type": "object"
|
|
575
|
+
},
|
|
576
|
+
"_structures": {
|
|
577
|
+
"additionalProperties": {
|
|
578
|
+
"$ref": "#/definitions/Structure"
|
|
579
|
+
},
|
|
580
|
+
"description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
|
|
581
|
+
"markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be\nreferenced in the configuration for `array` or `object` inputs.",
|
|
582
|
+
"type": "object"
|
|
583
|
+
},
|
|
584
|
+
"add_options": {
|
|
585
|
+
"description": "Changes the options presented in the add menu in the collection file list. Defaults to an automatically generated list from _Schemas_, or uses the first file in the collection if no schemas are configured.",
|
|
586
|
+
"items": {
|
|
587
|
+
"$ref": "#/definitions/AddOption"
|
|
588
|
+
},
|
|
589
|
+
"markdownDescription": "Changes the options presented in the add menu in the collection file list. Defaults to an\nautomatically generated list from _Schemas_, or uses the first file in the collection if no\nschemas are configured.",
|
|
590
|
+
"type": "array"
|
|
591
|
+
},
|
|
592
|
+
"create": {
|
|
593
|
+
"$ref": "#/definitions/Create",
|
|
594
|
+
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
595
|
+
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
596
|
+
},
|
|
597
|
+
"description": {
|
|
598
|
+
"description": "Text or Markdown to show above the collection file list.",
|
|
599
|
+
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
600
|
+
"type": "string"
|
|
601
|
+
},
|
|
602
|
+
"disable_add": {
|
|
603
|
+
"description": "Prevents users from adding new files in the collection file list if true.",
|
|
604
|
+
"markdownDescription": "Prevents users from adding new files in the collection file list if true.",
|
|
605
|
+
"type": "boolean"
|
|
606
|
+
},
|
|
607
|
+
"disable_add_folder": {
|
|
608
|
+
"description": "Prevents users from adding new folders in the collection file list if true.",
|
|
609
|
+
"markdownDescription": "Prevents users from adding new folders in the collection file list if true.",
|
|
610
|
+
"type": "boolean"
|
|
611
|
+
},
|
|
612
|
+
"disable_file_actions": {
|
|
613
|
+
"description": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
|
|
614
|
+
"markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
|
|
615
|
+
"type": "boolean"
|
|
616
|
+
},
|
|
617
|
+
"documentation": {
|
|
618
|
+
"$ref": "#/definitions/Documentation",
|
|
619
|
+
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
620
|
+
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
621
|
+
},
|
|
622
|
+
"filter": {
|
|
623
|
+
"anyOf": [
|
|
624
|
+
{
|
|
625
|
+
"$ref": "#/definitions/Filter"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"$ref": "#/definitions/FilterBase"
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
632
|
+
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
633
|
+
},
|
|
634
|
+
"glob": {
|
|
635
|
+
"anyOf": [
|
|
636
|
+
{
|
|
637
|
+
"items": {
|
|
638
|
+
"type": "string"
|
|
639
|
+
},
|
|
640
|
+
"type": "array"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"type": "string"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
647
|
+
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
648
|
+
},
|
|
649
|
+
"icon": {
|
|
650
|
+
"$ref": "#/definitions/Icon",
|
|
651
|
+
"description": "Sets an icon to use alongside references to this collection.",
|
|
652
|
+
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
653
|
+
},
|
|
654
|
+
"name": {
|
|
655
|
+
"description": "The display name of this collection. Used in headings and in the context menu for items in the collection. This is optional as CloudCannon auto-generates this from the collection key.",
|
|
656
|
+
"markdownDescription": "The display name of this collection. Used in headings and in the context menu for items in the\ncollection. This is optional as CloudCannon auto-generates this from the collection key.",
|
|
657
|
+
"type": "string"
|
|
658
|
+
},
|
|
659
|
+
"new_preview_url": {
|
|
660
|
+
"description": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will load that set preview URL and use the Data Bindings and Previews to render your new page without saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the Visual Editor.",
|
|
661
|
+
"markdownDescription": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will\nload that set preview URL and use the Data Bindings and Previews to render your new page\nwithout saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the\nVisual Editor.",
|
|
662
|
+
"type": "string"
|
|
663
|
+
},
|
|
664
|
+
"output": {
|
|
665
|
+
"description": "Whether or not files in this collection produce files in the build output.",
|
|
666
|
+
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
667
|
+
"type": "boolean"
|
|
668
|
+
},
|
|
669
|
+
"path": {
|
|
670
|
+
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
671
|
+
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
672
|
+
"type": "string"
|
|
673
|
+
},
|
|
674
|
+
"preview": {
|
|
675
|
+
"$ref": "#/definitions/Preview",
|
|
676
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
677
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
678
|
+
},
|
|
679
|
+
"schema_key": {
|
|
680
|
+
"description": "The key used in each file to identify the schema that file uses. The value this key represents in each of this collection's files should match the keys in schemas. Defaults to _schema.",
|
|
681
|
+
"markdownDescription": "The key used in each file to identify the schema that file uses. The value this key represents\nin each of this collection's files should match the keys in schemas. Defaults to _schema.",
|
|
682
|
+
"type": "string"
|
|
683
|
+
},
|
|
684
|
+
"schemas": {
|
|
685
|
+
"additionalProperties": {
|
|
686
|
+
"$ref": "#/definitions/Schema"
|
|
687
|
+
},
|
|
688
|
+
"description": "The set of schemas for this collection. Schemas are used when creating and editing files in this collection. Each entry corresponds to a schema that describes a data structure for this collection.\n\nThe keys in this object should match the values used for schema_key inside each of this collection's files. default is a special entry and is used when a file has no schema.",
|
|
689
|
+
"markdownDescription": "The set of schemas for this collection. Schemas are used when creating and editing files in\nthis collection. Each entry corresponds to a schema that describes a data structure for this\ncollection.\n\nThe keys in this object should match the values used for schema_key inside each of this\ncollection's files. default is a special entry and is used when a file has no schema.",
|
|
690
|
+
"type": "object"
|
|
691
|
+
},
|
|
692
|
+
"singular_key": {
|
|
693
|
+
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
694
|
+
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
695
|
+
"type": "string"
|
|
696
|
+
},
|
|
697
|
+
"singular_name": {
|
|
698
|
+
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
699
|
+
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
700
|
+
"type": "string"
|
|
701
|
+
},
|
|
702
|
+
"sort": {
|
|
703
|
+
"$ref": "#/definitions/Sort",
|
|
704
|
+
"description": "Sets the default sorting for the collection file list. Defaults to the first option in sort_options, then falls back descending path. As an exception, defaults to descending date for blog-like collections.",
|
|
705
|
+
"markdownDescription": "Sets the default sorting for the collection file list. Defaults to the first option in\nsort_options, then falls back descending path. As an exception, defaults to descending date for\nblog-like collections."
|
|
706
|
+
},
|
|
707
|
+
"sort_options": {
|
|
708
|
+
"description": "Controls the available options in the sort menu. Defaults to generating the options from the first item in the collection, falling back to ascending path and descending path.",
|
|
709
|
+
"items": {
|
|
710
|
+
"$ref": "#/definitions/SortOption"
|
|
711
|
+
},
|
|
712
|
+
"markdownDescription": "Controls the available options in the sort menu. Defaults to generating the options from the\nfirst item in the collection, falling back to ascending path and descending path.",
|
|
713
|
+
"type": "array"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
"type": "object"
|
|
717
|
+
},
|
|
503
718
|
"ChoiceInput": {
|
|
504
719
|
"additionalProperties": false,
|
|
505
720
|
"properties": {
|
|
@@ -732,10 +947,10 @@
|
|
|
732
947
|
"type": "number"
|
|
733
948
|
},
|
|
734
949
|
"theme": {
|
|
950
|
+
"$ref": "#/definitions/Theme",
|
|
735
951
|
"default": "monokai",
|
|
736
952
|
"description": "Changes the color scheme for syntax highlighting in the editor.",
|
|
737
|
-
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
738
|
-
"type": "string"
|
|
953
|
+
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
739
954
|
}
|
|
740
955
|
},
|
|
741
956
|
"type": "object"
|
|
@@ -949,8 +1164,8 @@
|
|
|
949
1164
|
"type": "string"
|
|
950
1165
|
},
|
|
951
1166
|
"publish_to": {
|
|
952
|
-
"description": "Defines a target collection when publishing. When a file is published
|
|
953
|
-
"markdownDescription": "Defines a target collection when publishing. When a file is published
|
|
1167
|
+
"description": "Defines a target collection when publishing. When a file is published, the target collection's create definition is used instead.",
|
|
1168
|
+
"markdownDescription": "Defines a target collection when publishing. When a file is published, the target collection's\ncreate definition is used instead.",
|
|
954
1169
|
"type": "string"
|
|
955
1170
|
}
|
|
956
1171
|
},
|
|
@@ -1170,16 +1385,18 @@
|
|
|
1170
1385
|
"properties": {
|
|
1171
1386
|
"_array_structures": {
|
|
1172
1387
|
"additionalProperties": {},
|
|
1173
|
-
"
|
|
1174
|
-
"
|
|
1388
|
+
"deprecated": "Use _structures instead.",
|
|
1389
|
+
"description": "Now known as _structures.",
|
|
1390
|
+
"markdownDescription": "Now known as _structures.",
|
|
1175
1391
|
"type": "object"
|
|
1176
1392
|
},
|
|
1177
1393
|
"_comments": {
|
|
1178
1394
|
"additionalProperties": {
|
|
1179
1395
|
"type": "string"
|
|
1180
1396
|
},
|
|
1181
|
-
"
|
|
1182
|
-
"
|
|
1397
|
+
"deprecated": "Use _inputs instead.",
|
|
1398
|
+
"description": "Now part of _inputs.*.comment.",
|
|
1399
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1183
1400
|
"type": "object"
|
|
1184
1401
|
},
|
|
1185
1402
|
"_editables": {
|
|
@@ -1208,8 +1425,9 @@
|
|
|
1208
1425
|
"additionalProperties": {},
|
|
1209
1426
|
"type": "object"
|
|
1210
1427
|
},
|
|
1211
|
-
"
|
|
1212
|
-
"
|
|
1428
|
+
"deprecated": "Use _inputs instead.",
|
|
1429
|
+
"description": "Now part of _inputs.*.options.",
|
|
1430
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
1213
1431
|
"type": "object"
|
|
1214
1432
|
},
|
|
1215
1433
|
"_select_data": {
|
|
@@ -1230,14 +1448,14 @@
|
|
|
1230
1448
|
},
|
|
1231
1449
|
"glob": {
|
|
1232
1450
|
"anyOf": [
|
|
1233
|
-
{
|
|
1234
|
-
"type": "string"
|
|
1235
|
-
},
|
|
1236
1451
|
{
|
|
1237
1452
|
"items": {
|
|
1238
1453
|
"type": "string"
|
|
1239
1454
|
},
|
|
1240
1455
|
"type": "array"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"type": "string"
|
|
1241
1459
|
}
|
|
1242
1460
|
],
|
|
1243
1461
|
"description": "The glob pattern(s) targeting a path to one or more files.",
|
|
@@ -3547,12 +3765,6 @@
|
|
|
3547
3765
|
"markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset\nsources can be uploaded to and selected from.",
|
|
3548
3766
|
"type": "array"
|
|
3549
3767
|
},
|
|
3550
|
-
"correct_orientation": {
|
|
3551
|
-
"default": true,
|
|
3552
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
3553
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
3554
|
-
"type": "boolean"
|
|
3555
|
-
},
|
|
3556
3768
|
"expandable": {
|
|
3557
3769
|
"default": false,
|
|
3558
3770
|
"description": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized.",
|
|
@@ -3574,7 +3786,8 @@
|
|
|
3574
3786
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
3575
3787
|
"enum": [
|
|
3576
3788
|
"image/jpeg",
|
|
3577
|
-
"image/png"
|
|
3789
|
+
"image/png",
|
|
3790
|
+
"image/webp"
|
|
3578
3791
|
],
|
|
3579
3792
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
3580
3793
|
"type": "string"
|
|
@@ -3742,12 +3955,6 @@
|
|
|
3742
3955
|
"markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset\nsources can be uploaded to and selected from.",
|
|
3743
3956
|
"type": "array"
|
|
3744
3957
|
},
|
|
3745
|
-
"correct_orientation": {
|
|
3746
|
-
"default": true,
|
|
3747
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
3748
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
3749
|
-
"type": "boolean"
|
|
3750
|
-
},
|
|
3751
3958
|
"empty_type": {
|
|
3752
3959
|
"$ref": "#/definitions/EmptyTypeText",
|
|
3753
3960
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
@@ -3774,7 +3981,8 @@
|
|
|
3774
3981
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
3775
3982
|
"enum": [
|
|
3776
3983
|
"image/jpeg",
|
|
3777
|
-
"image/png"
|
|
3984
|
+
"image/png",
|
|
3985
|
+
"image/webp"
|
|
3778
3986
|
],
|
|
3779
3987
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
3780
3988
|
"type": "string"
|
|
@@ -3936,19 +4144,23 @@
|
|
|
3936
4144
|
},
|
|
3937
4145
|
"JekyllConfiguration": {
|
|
3938
4146
|
"additionalProperties": false,
|
|
4147
|
+
"description": "The configuration format for build-coupled Jekyll sites.",
|
|
4148
|
+
"markdownDescription": "The configuration format for build-coupled Jekyll sites.",
|
|
3939
4149
|
"properties": {
|
|
3940
4150
|
"_array_structures": {
|
|
3941
4151
|
"additionalProperties": {},
|
|
3942
|
-
"
|
|
3943
|
-
"
|
|
4152
|
+
"deprecated": "Use _structures instead.",
|
|
4153
|
+
"description": "Now known as _structures.",
|
|
4154
|
+
"markdownDescription": "Now known as _structures.",
|
|
3944
4155
|
"type": "object"
|
|
3945
4156
|
},
|
|
3946
4157
|
"_comments": {
|
|
3947
4158
|
"additionalProperties": {
|
|
3948
4159
|
"type": "string"
|
|
3949
4160
|
},
|
|
3950
|
-
"
|
|
3951
|
-
"
|
|
4161
|
+
"deprecated": "Use _inputs instead.",
|
|
4162
|
+
"description": "Now part of _inputs.*.comment.",
|
|
4163
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
3952
4164
|
"type": "object"
|
|
3953
4165
|
},
|
|
3954
4166
|
"_editables": {
|
|
@@ -3977,8 +4189,9 @@
|
|
|
3977
4189
|
"additionalProperties": {},
|
|
3978
4190
|
"type": "object"
|
|
3979
4191
|
},
|
|
3980
|
-
"
|
|
3981
|
-
"
|
|
4192
|
+
"deprecated": "Use _inputs instead.",
|
|
4193
|
+
"description": "Now part of _inputs.*.options.",
|
|
4194
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
3982
4195
|
"type": "object"
|
|
3983
4196
|
},
|
|
3984
4197
|
"_select_data": {
|
|
@@ -4041,201 +4254,7 @@
|
|
|
4041
4254
|
},
|
|
4042
4255
|
"collections_config": {
|
|
4043
4256
|
"additionalProperties": {
|
|
4044
|
-
"
|
|
4045
|
-
"properties": {
|
|
4046
|
-
"_array_structures": {
|
|
4047
|
-
"additionalProperties": {},
|
|
4048
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
4049
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
4050
|
-
"type": "object"
|
|
4051
|
-
},
|
|
4052
|
-
"_comments": {
|
|
4053
|
-
"additionalProperties": {
|
|
4054
|
-
"type": "string"
|
|
4055
|
-
},
|
|
4056
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
4057
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
4058
|
-
"type": "object"
|
|
4059
|
-
},
|
|
4060
|
-
"_editables": {
|
|
4061
|
-
"$ref": "#/definitions/Editables",
|
|
4062
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
4063
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
4064
|
-
},
|
|
4065
|
-
"_enabled_editors": {
|
|
4066
|
-
"description": "Set a preferred editor and/or disable the others. The first value sets which editor opens by default, and the following values specify which editors are accessible.",
|
|
4067
|
-
"items": {
|
|
4068
|
-
"$ref": "#/definitions/EditorKey"
|
|
4069
|
-
},
|
|
4070
|
-
"markdownDescription": "Set a preferred editor and/or disable the others. The first value sets which editor opens by\ndefault, and the following values specify which editors are accessible.",
|
|
4071
|
-
"type": "array"
|
|
4072
|
-
},
|
|
4073
|
-
"_inputs": {
|
|
4074
|
-
"additionalProperties": {
|
|
4075
|
-
"$ref": "#/definitions/Input"
|
|
4076
|
-
},
|
|
4077
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
4078
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
4079
|
-
"type": "object"
|
|
4080
|
-
},
|
|
4081
|
-
"_options": {
|
|
4082
|
-
"additionalProperties": {
|
|
4083
|
-
"additionalProperties": {},
|
|
4084
|
-
"type": "object"
|
|
4085
|
-
},
|
|
4086
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
4087
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
4088
|
-
"type": "object"
|
|
4089
|
-
},
|
|
4090
|
-
"_select_data": {
|
|
4091
|
-
"additionalProperties": {
|
|
4092
|
-
"$ref": "#/definitions/SelectValues"
|
|
4093
|
-
},
|
|
4094
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
4095
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
4096
|
-
"type": "object"
|
|
4097
|
-
},
|
|
4098
|
-
"_structures": {
|
|
4099
|
-
"additionalProperties": {
|
|
4100
|
-
"$ref": "#/definitions/Structure"
|
|
4101
|
-
},
|
|
4102
|
-
"description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
|
|
4103
|
-
"markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be\nreferenced in the configuration for `array` or `object` inputs.",
|
|
4104
|
-
"type": "object"
|
|
4105
|
-
},
|
|
4106
|
-
"add_options": {
|
|
4107
|
-
"description": "Changes the options presented in the add menu in the collection file list. Defaults to an automatically generated list from _Schemas_, or uses the first file in the collection if no schemas are configured.",
|
|
4108
|
-
"items": {
|
|
4109
|
-
"$ref": "#/definitions/AddOption"
|
|
4110
|
-
},
|
|
4111
|
-
"markdownDescription": "Changes the options presented in the add menu in the collection file list. Defaults to an\nautomatically generated list from _Schemas_, or uses the first file in the collection if no\nschemas are configured.",
|
|
4112
|
-
"type": "array"
|
|
4113
|
-
},
|
|
4114
|
-
"create": {
|
|
4115
|
-
"$ref": "#/definitions/Create",
|
|
4116
|
-
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
4117
|
-
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
4118
|
-
},
|
|
4119
|
-
"description": {
|
|
4120
|
-
"description": "Text or Markdown to show above the collection file list.",
|
|
4121
|
-
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
4122
|
-
"type": "string"
|
|
4123
|
-
},
|
|
4124
|
-
"disable_add": {
|
|
4125
|
-
"description": "Prevents users from adding new files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only (data sub-folders act as non-output collections). Otherwise, defaults to false.",
|
|
4126
|
-
"markdownDescription": "Prevents users from adding new files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only\n(data sub-folders act as non-output collections). Otherwise, defaults to false.",
|
|
4127
|
-
"type": "boolean"
|
|
4128
|
-
},
|
|
4129
|
-
"disable_add_folder": {
|
|
4130
|
-
"description": "Prevents users from adding new folders in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only (data sub-folders act as non-output collections). Otherwise, defaults to false.",
|
|
4131
|
-
"markdownDescription": "Prevents users from adding new folders in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only\n(data sub-folders act as non-output collections). Otherwise, defaults to false.",
|
|
4132
|
-
"type": "boolean"
|
|
4133
|
-
},
|
|
4134
|
-
"disable_file_actions": {
|
|
4135
|
-
"description": "Prevents users from renaming, moving and deleting files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only (data sub-folders act as non-output collections). Otherwise, defaults to false.",
|
|
4136
|
-
"markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only\n(data sub-folders act as non-output collections). Otherwise, defaults to false.",
|
|
4137
|
-
"type": "boolean"
|
|
4138
|
-
},
|
|
4139
|
-
"documentation": {
|
|
4140
|
-
"$ref": "#/definitions/Documentation",
|
|
4141
|
-
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
4142
|
-
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
4143
|
-
},
|
|
4144
|
-
"filter": {
|
|
4145
|
-
"anyOf": [
|
|
4146
|
-
{
|
|
4147
|
-
"$ref": "#/definitions/Filter"
|
|
4148
|
-
},
|
|
4149
|
-
{
|
|
4150
|
-
"$ref": "#/definitions/FilterBase"
|
|
4151
|
-
}
|
|
4152
|
-
],
|
|
4153
|
-
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
4154
|
-
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
4155
|
-
},
|
|
4156
|
-
"glob": {
|
|
4157
|
-
"anyOf": [
|
|
4158
|
-
{
|
|
4159
|
-
"type": "string"
|
|
4160
|
-
},
|
|
4161
|
-
{
|
|
4162
|
-
"items": {
|
|
4163
|
-
"type": "string"
|
|
4164
|
-
},
|
|
4165
|
-
"type": "array"
|
|
4166
|
-
}
|
|
4167
|
-
],
|
|
4168
|
-
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
4169
|
-
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
4170
|
-
},
|
|
4171
|
-
"icon": {
|
|
4172
|
-
"$ref": "#/definitions/Icon",
|
|
4173
|
-
"description": "Sets an icon to use alongside references to this collection.",
|
|
4174
|
-
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
4175
|
-
},
|
|
4176
|
-
"name": {
|
|
4177
|
-
"description": "The display name of this collection. Used in headings and in the context menu for items in the collection. This is optional as CloudCannon auto-generates this from the collection key.",
|
|
4178
|
-
"markdownDescription": "The display name of this collection. Used in headings and in the context menu for items in the\ncollection. This is optional as CloudCannon auto-generates this from the collection key.",
|
|
4179
|
-
"type": "string"
|
|
4180
|
-
},
|
|
4181
|
-
"new_preview_url": {
|
|
4182
|
-
"description": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will load that set preview URL and use the Data Bindings and Previews to render your new page without saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the Visual Editor.",
|
|
4183
|
-
"markdownDescription": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will\nload that set preview URL and use the Data Bindings and Previews to render your new page\nwithout saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the\nVisual Editor.",
|
|
4184
|
-
"type": "string"
|
|
4185
|
-
},
|
|
4186
|
-
"output": {
|
|
4187
|
-
"description": "Whether or not files in this collection produce files in the build output.",
|
|
4188
|
-
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
4189
|
-
"type": "boolean"
|
|
4190
|
-
},
|
|
4191
|
-
"path": {
|
|
4192
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
4193
|
-
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
4194
|
-
"type": "string"
|
|
4195
|
-
},
|
|
4196
|
-
"preview": {
|
|
4197
|
-
"$ref": "#/definitions/Preview",
|
|
4198
|
-
"description": "Changes the way items are previewed in the CMS.",
|
|
4199
|
-
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
4200
|
-
},
|
|
4201
|
-
"schema_key": {
|
|
4202
|
-
"description": "The key used in each file to identify the schema that file uses. The value this key represents in each of this collection's files should match the keys in schemas. Defaults to _schema.",
|
|
4203
|
-
"markdownDescription": "The key used in each file to identify the schema that file uses. The value this key represents\nin each of this collection's files should match the keys in schemas. Defaults to _schema.",
|
|
4204
|
-
"type": "string"
|
|
4205
|
-
},
|
|
4206
|
-
"schemas": {
|
|
4207
|
-
"additionalProperties": {
|
|
4208
|
-
"$ref": "#/definitions/Schema"
|
|
4209
|
-
},
|
|
4210
|
-
"description": "The set of schemas for this collection. Schemas are used when creating and editing files in this collection. Each entry corresponds to a schema that describes a data structure for this collection.\n\nThe keys in this object should match the values used for schema_key inside each of this collection's files. default is a special entry and is used when a file has no schema.",
|
|
4211
|
-
"markdownDescription": "The set of schemas for this collection. Schemas are used when creating and editing files in\nthis collection. Each entry corresponds to a schema that describes a data structure for this\ncollection.\n\nThe keys in this object should match the values used for schema_key inside each of this\ncollection's files. default is a special entry and is used when a file has no schema.",
|
|
4212
|
-
"type": "object"
|
|
4213
|
-
},
|
|
4214
|
-
"singular_key": {
|
|
4215
|
-
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
4216
|
-
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
4217
|
-
"type": "string"
|
|
4218
|
-
},
|
|
4219
|
-
"singular_name": {
|
|
4220
|
-
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
4221
|
-
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
4222
|
-
"type": "string"
|
|
4223
|
-
},
|
|
4224
|
-
"sort": {
|
|
4225
|
-
"$ref": "#/definitions/Sort",
|
|
4226
|
-
"description": "Sets the default sorting for the collection file list. Defaults to the first option in sort_options, then falls back descending path. As an exception, defaults to descending date for blog-like collections.",
|
|
4227
|
-
"markdownDescription": "Sets the default sorting for the collection file list. Defaults to the first option in\nsort_options, then falls back descending path. As an exception, defaults to descending date for\nblog-like collections."
|
|
4228
|
-
},
|
|
4229
|
-
"sort_options": {
|
|
4230
|
-
"description": "Controls the available options in the sort menu. Defaults to generating the options from the first item in the collection, falling back to ascending path and descending path.",
|
|
4231
|
-
"items": {
|
|
4232
|
-
"$ref": "#/definitions/SortOption"
|
|
4233
|
-
},
|
|
4234
|
-
"markdownDescription": "Controls the available options in the sort menu. Defaults to generating the options from the\nfirst item in the collection, falling back to ascending path and descending path.",
|
|
4235
|
-
"type": "array"
|
|
4236
|
-
}
|
|
4237
|
-
},
|
|
4238
|
-
"type": "object"
|
|
4257
|
+
"$ref": "#/definitions/BuildCoupledCollectionConfig"
|
|
4239
4258
|
},
|
|
4240
4259
|
"description": "Definitions for your collections, which are the sets of content files for your site grouped by folder. Entries are keyed by a chosen collection key, and contain configuration specific to that collection.",
|
|
4241
4260
|
"markdownDescription": "Definitions for your collections, which are the sets of content files for your site grouped by\nfolder. Entries are keyed by a chosen collection key, and contain configuration specific to\nthat collection.",
|
|
@@ -4247,17 +4266,17 @@
|
|
|
4247
4266
|
"type": "boolean"
|
|
4248
4267
|
},
|
|
4249
4268
|
"commit_templates": {
|
|
4269
|
+
"description": "Templates for commit messages when saving changes.",
|
|
4250
4270
|
"items": {
|
|
4251
4271
|
"$ref": "#/definitions/CommitTemplate"
|
|
4252
4272
|
},
|
|
4273
|
+
"markdownDescription": "Templates for commit messages when saving changes.",
|
|
4253
4274
|
"type": "array"
|
|
4254
4275
|
},
|
|
4255
4276
|
"data_config": {
|
|
4256
4277
|
"additionalProperties": {
|
|
4257
4278
|
"type": "boolean"
|
|
4258
4279
|
},
|
|
4259
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
4260
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
4261
4280
|
"type": "object"
|
|
4262
4281
|
},
|
|
4263
4282
|
"editor": {
|
|
@@ -4273,61 +4292,10 @@
|
|
|
4273
4292
|
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
4274
4293
|
"type": "object"
|
|
4275
4294
|
},
|
|
4276
|
-
"
|
|
4277
|
-
"
|
|
4295
|
+
"markdown": {
|
|
4296
|
+
"$ref": "#/definitions/MarkdownSettings",
|
|
4278
4297
|
"description": "Contains settings for various Markdown engines.",
|
|
4279
|
-
"markdownDescription": "Contains settings for various Markdown engines."
|
|
4280
|
-
"properties": {
|
|
4281
|
-
"metadata": {
|
|
4282
|
-
"additionalProperties": false,
|
|
4283
|
-
"description": "Settings for various Markdown engines.",
|
|
4284
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
4285
|
-
"properties": {
|
|
4286
|
-
"commonmark": {
|
|
4287
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
4288
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
4289
|
-
"type": "object"
|
|
4290
|
-
},
|
|
4291
|
-
"commonmarkghpages": {
|
|
4292
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
4293
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
4294
|
-
"type": "object"
|
|
4295
|
-
},
|
|
4296
|
-
"goldmark": {
|
|
4297
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
4298
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
4299
|
-
"type": "object"
|
|
4300
|
-
},
|
|
4301
|
-
"kramdown": {
|
|
4302
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
4303
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
4304
|
-
"type": "object"
|
|
4305
|
-
},
|
|
4306
|
-
"markdown": {
|
|
4307
|
-
"description": "The Markdown engine used on your site.",
|
|
4308
|
-
"enum": [
|
|
4309
|
-
"kramdown",
|
|
4310
|
-
"commonmark",
|
|
4311
|
-
"commonmarkghpages",
|
|
4312
|
-
"goldmark",
|
|
4313
|
-
"markdown-it"
|
|
4314
|
-
],
|
|
4315
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
4316
|
-
"type": "string"
|
|
4317
|
-
},
|
|
4318
|
-
"markdown-it": {
|
|
4319
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
4320
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
4321
|
-
"type": "object"
|
|
4322
|
-
}
|
|
4323
|
-
},
|
|
4324
|
-
"required": [
|
|
4325
|
-
"markdown"
|
|
4326
|
-
],
|
|
4327
|
-
"type": "object"
|
|
4328
|
-
}
|
|
4329
|
-
},
|
|
4330
|
-
"type": "object"
|
|
4298
|
+
"markdownDescription": "Contains settings for various Markdown engines."
|
|
4331
4299
|
},
|
|
4332
4300
|
"paths": {
|
|
4333
4301
|
"$ref": "#/definitions/Paths",
|
|
@@ -4344,10 +4312,6 @@
|
|
|
4344
4312
|
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
4345
4313
|
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
4346
4314
|
},
|
|
4347
|
-
"ssg": {
|
|
4348
|
-
"const": "jekyll",
|
|
4349
|
-
"type": "string"
|
|
4350
|
-
},
|
|
4351
4315
|
"timezone": {
|
|
4352
4316
|
"$ref": "#/definitions/Timezone",
|
|
4353
4317
|
"default": "Etc/UTC",
|
|
@@ -4368,28 +4332,186 @@
|
|
|
4368
4332
|
},
|
|
4369
4333
|
"type": "object"
|
|
4370
4334
|
},
|
|
4371
|
-
"
|
|
4372
|
-
"
|
|
4373
|
-
|
|
4374
|
-
"
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
"
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
"
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
"
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
"
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
"
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
"
|
|
4335
|
+
"MarkdownAttributeElementOptions": {
|
|
4336
|
+
"additionalProperties": false,
|
|
4337
|
+
"properties": {
|
|
4338
|
+
"block": {
|
|
4339
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4340
|
+
},
|
|
4341
|
+
"blockquote": {
|
|
4342
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4343
|
+
},
|
|
4344
|
+
"img": {
|
|
4345
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4346
|
+
},
|
|
4347
|
+
"inline": {
|
|
4348
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4349
|
+
},
|
|
4350
|
+
"li": {
|
|
4351
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4352
|
+
},
|
|
4353
|
+
"ol": {
|
|
4354
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4355
|
+
},
|
|
4356
|
+
"table": {
|
|
4357
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4358
|
+
},
|
|
4359
|
+
"td": {
|
|
4360
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4361
|
+
},
|
|
4362
|
+
"tr": {
|
|
4363
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4364
|
+
},
|
|
4365
|
+
"ul": {
|
|
4366
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4367
|
+
}
|
|
4368
|
+
},
|
|
4369
|
+
"type": "object"
|
|
4370
|
+
},
|
|
4371
|
+
"MarkdownSettings": {
|
|
4372
|
+
"additionalProperties": false,
|
|
4373
|
+
"properties": {
|
|
4374
|
+
"engine": {
|
|
4375
|
+
"enum": [
|
|
4376
|
+
"commonmark",
|
|
4377
|
+
"kramdown"
|
|
4378
|
+
],
|
|
4379
|
+
"type": "string"
|
|
4380
|
+
},
|
|
4381
|
+
"options": {
|
|
4382
|
+
"additionalProperties": false,
|
|
4383
|
+
"properties": {
|
|
4384
|
+
"attribute_elements": {
|
|
4385
|
+
"$ref": "#/definitions/MarkdownAttributeElementOptions",
|
|
4386
|
+
"description": "Define positioning behaviour of Markdown attributes for different elements.",
|
|
4387
|
+
"markdownDescription": "Define positioning behaviour of Markdown attributes for different elements."
|
|
4388
|
+
},
|
|
4389
|
+
"attributes": {
|
|
4390
|
+
"description": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4391
|
+
"markdownDescription": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4392
|
+
"type": "boolean"
|
|
4393
|
+
},
|
|
4394
|
+
"breaks": {
|
|
4395
|
+
"description": "Convert '\\n' in paragraphs into <br>.",
|
|
4396
|
+
"markdownDescription": "Convert '\\n' in paragraphs into <br>.",
|
|
4397
|
+
"type": "boolean"
|
|
4398
|
+
},
|
|
4399
|
+
"code_block_fences": {
|
|
4400
|
+
"description": "Determines which style of code block fences to use.",
|
|
4401
|
+
"enum": [
|
|
4402
|
+
"```",
|
|
4403
|
+
"~~~"
|
|
4404
|
+
],
|
|
4405
|
+
"markdownDescription": "Determines which style of code block fences to use.",
|
|
4406
|
+
"type": "string"
|
|
4407
|
+
},
|
|
4408
|
+
"escape_snippets_in_code_blocks": {
|
|
4409
|
+
"description": "Render snippets as plain text within code blocks.",
|
|
4410
|
+
"markdownDescription": "Render snippets as plain text within code blocks.",
|
|
4411
|
+
"type": "boolean"
|
|
4412
|
+
},
|
|
4413
|
+
"gfm": {
|
|
4414
|
+
"description": "Enable GFM mode.",
|
|
4415
|
+
"markdownDescription": "Enable GFM mode.",
|
|
4416
|
+
"type": "boolean"
|
|
4417
|
+
},
|
|
4418
|
+
"heading_ids": {
|
|
4419
|
+
"description": "Generate IDs for headings",
|
|
4420
|
+
"markdownDescription": "Generate IDs for headings",
|
|
4421
|
+
"type": "boolean"
|
|
4422
|
+
},
|
|
4423
|
+
"html": {
|
|
4424
|
+
"description": "Output HTML tags from source.",
|
|
4425
|
+
"markdownDescription": "Output HTML tags from source.",
|
|
4426
|
+
"type": "boolean"
|
|
4427
|
+
},
|
|
4428
|
+
"linkify": {
|
|
4429
|
+
"description": "Autoconvert URL-like text to links.",
|
|
4430
|
+
"markdownDescription": "Autoconvert URL-like text to links.",
|
|
4431
|
+
"type": "boolean"
|
|
4432
|
+
},
|
|
4433
|
+
"quotes": {
|
|
4434
|
+
"description": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
|
|
4435
|
+
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
|
|
4436
|
+
"type": "string"
|
|
4437
|
+
},
|
|
4438
|
+
"sentence_per_line": {
|
|
4439
|
+
"description": "Add linebreaks between sentences in Markdown.",
|
|
4440
|
+
"markdownDescription": "Add linebreaks between sentences in Markdown.",
|
|
4441
|
+
"type": "boolean"
|
|
4442
|
+
},
|
|
4443
|
+
"spaced_lists": {
|
|
4444
|
+
"description": "Output lists with an extra space in Markdown.",
|
|
4445
|
+
"markdownDescription": "Output lists with an extra space in Markdown.",
|
|
4446
|
+
"type": "boolean"
|
|
4447
|
+
},
|
|
4448
|
+
"strikethrough": {
|
|
4449
|
+
"description": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4450
|
+
"markdownDescription": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4451
|
+
"type": "boolean"
|
|
4452
|
+
},
|
|
4453
|
+
"subscript": {
|
|
4454
|
+
"description": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4455
|
+
"markdownDescription": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4456
|
+
"type": "boolean"
|
|
4457
|
+
},
|
|
4458
|
+
"superscript": {
|
|
4459
|
+
"description": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4460
|
+
"markdownDescription": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4461
|
+
"type": "boolean"
|
|
4462
|
+
},
|
|
4463
|
+
"table": {
|
|
4464
|
+
"description": "Output tables in Markdown format.",
|
|
4465
|
+
"markdownDescription": "Output tables in Markdown format.",
|
|
4466
|
+
"type": "boolean"
|
|
4467
|
+
},
|
|
4468
|
+
"treat_indentation_as_code": {
|
|
4469
|
+
"description": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4470
|
+
"markdownDescription": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4471
|
+
"type": "boolean"
|
|
4472
|
+
},
|
|
4473
|
+
"typographer": {
|
|
4474
|
+
"description": "Enable some language-neutral replacement + quotes beautification.",
|
|
4475
|
+
"markdownDescription": "Enable some language-neutral replacement + quotes beautification.",
|
|
4476
|
+
"type": "boolean"
|
|
4477
|
+
},
|
|
4478
|
+
"xhtml": {
|
|
4479
|
+
"description": "Use '/' to close single tags (<br />).",
|
|
4480
|
+
"markdownDescription": "Use '/' to close single tags (<br />).",
|
|
4481
|
+
"type": "boolean"
|
|
4482
|
+
}
|
|
4483
|
+
},
|
|
4484
|
+
"type": "object"
|
|
4485
|
+
}
|
|
4486
|
+
},
|
|
4487
|
+
"required": [
|
|
4488
|
+
"engine",
|
|
4489
|
+
"options"
|
|
4490
|
+
],
|
|
4491
|
+
"type": "object"
|
|
4492
|
+
},
|
|
4493
|
+
"MimeType": {
|
|
4494
|
+
"enum": [
|
|
4495
|
+
"x-world/x-3dmf",
|
|
4496
|
+
"application/x-authorware-bin",
|
|
4497
|
+
"application/x-authorware-map",
|
|
4498
|
+
"application/x-authorware-seg",
|
|
4499
|
+
"text/vnd.abc",
|
|
4500
|
+
"video/animaflex",
|
|
4501
|
+
"application/postscript",
|
|
4502
|
+
"audio/aiff",
|
|
4503
|
+
"audio/x-aiff",
|
|
4504
|
+
"application/x-aim",
|
|
4505
|
+
"text/x-audiosoft-intra",
|
|
4506
|
+
"application/x-navi-animation",
|
|
4507
|
+
"application/x-nokia-9000-communicator-add-on-software",
|
|
4508
|
+
"application/mime",
|
|
4509
|
+
"application/arj",
|
|
4510
|
+
"image/x-jg",
|
|
4511
|
+
"video/x-ms-asf",
|
|
4512
|
+
"text/x-asm",
|
|
4513
|
+
"text/asp",
|
|
4514
|
+
"application/x-mplayer2",
|
|
4393
4515
|
"video/x-ms-asf-plugin",
|
|
4394
4516
|
"audio/basic",
|
|
4395
4517
|
"audio/x-au",
|
|
@@ -5343,158 +5465,22 @@
|
|
|
5343
5465
|
"additionalProperties": false,
|
|
5344
5466
|
"properties": {
|
|
5345
5467
|
"icon": {
|
|
5346
|
-
"
|
|
5347
|
-
{
|
|
5348
|
-
"items": {
|
|
5349
|
-
"anyOf": [
|
|
5350
|
-
{
|
|
5351
|
-
"additionalProperties": false,
|
|
5352
|
-
"properties": {
|
|
5353
|
-
"key": {
|
|
5354
|
-
"description": "The key used to access the value used for the preview.",
|
|
5355
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5356
|
-
"type": "string"
|
|
5357
|
-
}
|
|
5358
|
-
},
|
|
5359
|
-
"required": [
|
|
5360
|
-
"key"
|
|
5361
|
-
],
|
|
5362
|
-
"type": "object"
|
|
5363
|
-
},
|
|
5364
|
-
{
|
|
5365
|
-
"type": "string"
|
|
5366
|
-
},
|
|
5367
|
-
{
|
|
5368
|
-
"type": "boolean"
|
|
5369
|
-
}
|
|
5370
|
-
]
|
|
5371
|
-
},
|
|
5372
|
-
"type": "array"
|
|
5373
|
-
},
|
|
5374
|
-
{
|
|
5375
|
-
"type": "string"
|
|
5376
|
-
},
|
|
5377
|
-
{
|
|
5378
|
-
"type": "boolean"
|
|
5379
|
-
}
|
|
5380
|
-
],
|
|
5468
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5381
5469
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5382
5470
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5383
5471
|
},
|
|
5384
5472
|
"image": {
|
|
5385
|
-
"
|
|
5386
|
-
{
|
|
5387
|
-
"items": {
|
|
5388
|
-
"anyOf": [
|
|
5389
|
-
{
|
|
5390
|
-
"additionalProperties": false,
|
|
5391
|
-
"properties": {
|
|
5392
|
-
"key": {
|
|
5393
|
-
"description": "The key used to access the value used for the preview.",
|
|
5394
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5395
|
-
"type": "string"
|
|
5396
|
-
}
|
|
5397
|
-
},
|
|
5398
|
-
"required": [
|
|
5399
|
-
"key"
|
|
5400
|
-
],
|
|
5401
|
-
"type": "object"
|
|
5402
|
-
},
|
|
5403
|
-
{
|
|
5404
|
-
"type": "string"
|
|
5405
|
-
},
|
|
5406
|
-
{
|
|
5407
|
-
"type": "boolean"
|
|
5408
|
-
}
|
|
5409
|
-
]
|
|
5410
|
-
},
|
|
5411
|
-
"type": "array"
|
|
5412
|
-
},
|
|
5413
|
-
{
|
|
5414
|
-
"type": "string"
|
|
5415
|
-
},
|
|
5416
|
-
{
|
|
5417
|
-
"type": "boolean"
|
|
5418
|
-
}
|
|
5419
|
-
],
|
|
5473
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5420
5474
|
"description": "Controls the image shown per item.",
|
|
5421
5475
|
"markdownDescription": "Controls the image shown per item."
|
|
5422
5476
|
},
|
|
5423
5477
|
"subtext": {
|
|
5424
|
-
"
|
|
5425
|
-
{
|
|
5426
|
-
"items": {
|
|
5427
|
-
"anyOf": [
|
|
5428
|
-
{
|
|
5429
|
-
"additionalProperties": false,
|
|
5430
|
-
"properties": {
|
|
5431
|
-
"key": {
|
|
5432
|
-
"description": "The key used to access the value used for the preview.",
|
|
5433
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5434
|
-
"type": "string"
|
|
5435
|
-
}
|
|
5436
|
-
},
|
|
5437
|
-
"required": [
|
|
5438
|
-
"key"
|
|
5439
|
-
],
|
|
5440
|
-
"type": "object"
|
|
5441
|
-
},
|
|
5442
|
-
{
|
|
5443
|
-
"type": "string"
|
|
5444
|
-
},
|
|
5445
|
-
{
|
|
5446
|
-
"type": "boolean"
|
|
5447
|
-
}
|
|
5448
|
-
]
|
|
5449
|
-
},
|
|
5450
|
-
"type": "array"
|
|
5451
|
-
},
|
|
5452
|
-
{
|
|
5453
|
-
"type": "string"
|
|
5454
|
-
},
|
|
5455
|
-
{
|
|
5456
|
-
"type": "boolean"
|
|
5457
|
-
}
|
|
5458
|
-
],
|
|
5478
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5459
5479
|
"description": "Controls the supporting text shown per item.",
|
|
5460
5480
|
"markdownDescription": "Controls the supporting text shown per item."
|
|
5461
5481
|
},
|
|
5462
5482
|
"text": {
|
|
5463
|
-
"
|
|
5464
|
-
{
|
|
5465
|
-
"items": {
|
|
5466
|
-
"anyOf": [
|
|
5467
|
-
{
|
|
5468
|
-
"additionalProperties": false,
|
|
5469
|
-
"properties": {
|
|
5470
|
-
"key": {
|
|
5471
|
-
"description": "The key used to access the value used for the preview.",
|
|
5472
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5473
|
-
"type": "string"
|
|
5474
|
-
}
|
|
5475
|
-
},
|
|
5476
|
-
"required": [
|
|
5477
|
-
"key"
|
|
5478
|
-
],
|
|
5479
|
-
"type": "object"
|
|
5480
|
-
},
|
|
5481
|
-
{
|
|
5482
|
-
"type": "string"
|
|
5483
|
-
},
|
|
5484
|
-
{
|
|
5485
|
-
"type": "boolean"
|
|
5486
|
-
}
|
|
5487
|
-
]
|
|
5488
|
-
},
|
|
5489
|
-
"type": "array"
|
|
5490
|
-
},
|
|
5491
|
-
{
|
|
5492
|
-
"type": "string"
|
|
5493
|
-
},
|
|
5494
|
-
{
|
|
5495
|
-
"type": "boolean"
|
|
5496
|
-
}
|
|
5497
|
-
],
|
|
5483
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5498
5484
|
"description": "Controls the main text shown per item.",
|
|
5499
5485
|
"markdownDescription": "Controls the main text shown per item."
|
|
5500
5486
|
}
|
|
@@ -5505,7 +5491,6 @@
|
|
|
5505
5491
|
"additionalProperties": false,
|
|
5506
5492
|
"properties": {
|
|
5507
5493
|
"collections": {
|
|
5508
|
-
"default": "",
|
|
5509
5494
|
"description": "Parent folder of all collections.",
|
|
5510
5495
|
"markdownDescription": "Parent folder of all collections.",
|
|
5511
5496
|
"type": "string"
|
|
@@ -5575,41 +5560,7 @@
|
|
|
5575
5560
|
"markdownDescription": "Details for large image/icon preview per item."
|
|
5576
5561
|
},
|
|
5577
5562
|
"icon": {
|
|
5578
|
-
"
|
|
5579
|
-
{
|
|
5580
|
-
"items": {
|
|
5581
|
-
"anyOf": [
|
|
5582
|
-
{
|
|
5583
|
-
"additionalProperties": false,
|
|
5584
|
-
"properties": {
|
|
5585
|
-
"key": {
|
|
5586
|
-
"description": "The key used to access the value used for the preview.",
|
|
5587
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5588
|
-
"type": "string"
|
|
5589
|
-
}
|
|
5590
|
-
},
|
|
5591
|
-
"required": [
|
|
5592
|
-
"key"
|
|
5593
|
-
],
|
|
5594
|
-
"type": "object"
|
|
5595
|
-
},
|
|
5596
|
-
{
|
|
5597
|
-
"type": "string"
|
|
5598
|
-
},
|
|
5599
|
-
{
|
|
5600
|
-
"type": "boolean"
|
|
5601
|
-
}
|
|
5602
|
-
]
|
|
5603
|
-
},
|
|
5604
|
-
"type": "array"
|
|
5605
|
-
},
|
|
5606
|
-
{
|
|
5607
|
-
"type": "string"
|
|
5608
|
-
},
|
|
5609
|
-
{
|
|
5610
|
-
"type": "boolean"
|
|
5611
|
-
}
|
|
5612
|
-
],
|
|
5563
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5613
5564
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5614
5565
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5615
5566
|
},
|
|
@@ -5619,41 +5570,7 @@
|
|
|
5619
5570
|
"type": "string"
|
|
5620
5571
|
},
|
|
5621
5572
|
"image": {
|
|
5622
|
-
"
|
|
5623
|
-
{
|
|
5624
|
-
"items": {
|
|
5625
|
-
"anyOf": [
|
|
5626
|
-
{
|
|
5627
|
-
"additionalProperties": false,
|
|
5628
|
-
"properties": {
|
|
5629
|
-
"key": {
|
|
5630
|
-
"description": "The key used to access the value used for the preview.",
|
|
5631
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5632
|
-
"type": "string"
|
|
5633
|
-
}
|
|
5634
|
-
},
|
|
5635
|
-
"required": [
|
|
5636
|
-
"key"
|
|
5637
|
-
],
|
|
5638
|
-
"type": "object"
|
|
5639
|
-
},
|
|
5640
|
-
{
|
|
5641
|
-
"type": "string"
|
|
5642
|
-
},
|
|
5643
|
-
{
|
|
5644
|
-
"type": "boolean"
|
|
5645
|
-
}
|
|
5646
|
-
]
|
|
5647
|
-
},
|
|
5648
|
-
"type": "array"
|
|
5649
|
-
},
|
|
5650
|
-
{
|
|
5651
|
-
"type": "string"
|
|
5652
|
-
},
|
|
5653
|
-
{
|
|
5654
|
-
"type": "boolean"
|
|
5655
|
-
}
|
|
5656
|
-
],
|
|
5573
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5657
5574
|
"description": "Controls the image shown per item.",
|
|
5658
5575
|
"markdownDescription": "Controls the image shown per item."
|
|
5659
5576
|
},
|
|
@@ -5666,86 +5583,44 @@
|
|
|
5666
5583
|
"type": "array"
|
|
5667
5584
|
},
|
|
5668
5585
|
"subtext": {
|
|
5669
|
-
"
|
|
5670
|
-
{
|
|
5671
|
-
"items": {
|
|
5672
|
-
"anyOf": [
|
|
5673
|
-
{
|
|
5674
|
-
"additionalProperties": false,
|
|
5675
|
-
"properties": {
|
|
5676
|
-
"key": {
|
|
5677
|
-
"description": "The key used to access the value used for the preview.",
|
|
5678
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5679
|
-
"type": "string"
|
|
5680
|
-
}
|
|
5681
|
-
},
|
|
5682
|
-
"required": [
|
|
5683
|
-
"key"
|
|
5684
|
-
],
|
|
5685
|
-
"type": "object"
|
|
5686
|
-
},
|
|
5687
|
-
{
|
|
5688
|
-
"type": "string"
|
|
5689
|
-
},
|
|
5690
|
-
{
|
|
5691
|
-
"type": "boolean"
|
|
5692
|
-
}
|
|
5693
|
-
]
|
|
5694
|
-
},
|
|
5695
|
-
"type": "array"
|
|
5696
|
-
},
|
|
5697
|
-
{
|
|
5698
|
-
"type": "string"
|
|
5699
|
-
},
|
|
5700
|
-
{
|
|
5701
|
-
"type": "boolean"
|
|
5702
|
-
}
|
|
5703
|
-
],
|
|
5586
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5704
5587
|
"description": "Controls the supporting text shown per item.",
|
|
5705
5588
|
"markdownDescription": "Controls the supporting text shown per item."
|
|
5706
5589
|
},
|
|
5707
5590
|
"text": {
|
|
5708
|
-
"
|
|
5709
|
-
{
|
|
5710
|
-
"items": {
|
|
5711
|
-
"anyOf": [
|
|
5712
|
-
{
|
|
5713
|
-
"additionalProperties": false,
|
|
5714
|
-
"properties": {
|
|
5715
|
-
"key": {
|
|
5716
|
-
"description": "The key used to access the value used for the preview.",
|
|
5717
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5718
|
-
"type": "string"
|
|
5719
|
-
}
|
|
5720
|
-
},
|
|
5721
|
-
"required": [
|
|
5722
|
-
"key"
|
|
5723
|
-
],
|
|
5724
|
-
"type": "object"
|
|
5725
|
-
},
|
|
5726
|
-
{
|
|
5727
|
-
"type": "string"
|
|
5728
|
-
},
|
|
5729
|
-
{
|
|
5730
|
-
"type": "boolean"
|
|
5731
|
-
}
|
|
5732
|
-
]
|
|
5733
|
-
},
|
|
5734
|
-
"type": "array"
|
|
5735
|
-
},
|
|
5736
|
-
{
|
|
5737
|
-
"type": "string"
|
|
5738
|
-
},
|
|
5739
|
-
{
|
|
5740
|
-
"type": "boolean"
|
|
5741
|
-
}
|
|
5742
|
-
],
|
|
5591
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5743
5592
|
"description": "Controls the main text shown per item.",
|
|
5744
5593
|
"markdownDescription": "Controls the main text shown per item."
|
|
5745
5594
|
}
|
|
5746
5595
|
},
|
|
5747
5596
|
"type": "object"
|
|
5748
5597
|
},
|
|
5598
|
+
"PreviewEntry": {
|
|
5599
|
+
"anyOf": [
|
|
5600
|
+
{
|
|
5601
|
+
"items": {
|
|
5602
|
+
"anyOf": [
|
|
5603
|
+
{
|
|
5604
|
+
"$ref": "#/definitions/PreviewKeyEntry"
|
|
5605
|
+
},
|
|
5606
|
+
{
|
|
5607
|
+
"type": "string"
|
|
5608
|
+
},
|
|
5609
|
+
{
|
|
5610
|
+
"type": "boolean"
|
|
5611
|
+
}
|
|
5612
|
+
]
|
|
5613
|
+
},
|
|
5614
|
+
"type": "array"
|
|
5615
|
+
},
|
|
5616
|
+
{
|
|
5617
|
+
"type": "string"
|
|
5618
|
+
},
|
|
5619
|
+
{
|
|
5620
|
+
"type": "boolean"
|
|
5621
|
+
}
|
|
5622
|
+
]
|
|
5623
|
+
},
|
|
5749
5624
|
"PreviewGallery": {
|
|
5750
5625
|
"additionalProperties": false,
|
|
5751
5626
|
"properties": {
|
|
@@ -5761,41 +5636,7 @@
|
|
|
5761
5636
|
"type": "string"
|
|
5762
5637
|
},
|
|
5763
5638
|
"icon": {
|
|
5764
|
-
"
|
|
5765
|
-
{
|
|
5766
|
-
"items": {
|
|
5767
|
-
"anyOf": [
|
|
5768
|
-
{
|
|
5769
|
-
"additionalProperties": false,
|
|
5770
|
-
"properties": {
|
|
5771
|
-
"key": {
|
|
5772
|
-
"description": "The key used to access the value used for the preview.",
|
|
5773
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5774
|
-
"type": "string"
|
|
5775
|
-
}
|
|
5776
|
-
},
|
|
5777
|
-
"required": [
|
|
5778
|
-
"key"
|
|
5779
|
-
],
|
|
5780
|
-
"type": "object"
|
|
5781
|
-
},
|
|
5782
|
-
{
|
|
5783
|
-
"type": "string"
|
|
5784
|
-
},
|
|
5785
|
-
{
|
|
5786
|
-
"type": "boolean"
|
|
5787
|
-
}
|
|
5788
|
-
]
|
|
5789
|
-
},
|
|
5790
|
-
"type": "array"
|
|
5791
|
-
},
|
|
5792
|
-
{
|
|
5793
|
-
"type": "string"
|
|
5794
|
-
},
|
|
5795
|
-
{
|
|
5796
|
-
"type": "boolean"
|
|
5797
|
-
}
|
|
5798
|
-
],
|
|
5639
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5799
5640
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5800
5641
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5801
5642
|
},
|
|
@@ -5805,125 +5646,37 @@
|
|
|
5805
5646
|
"type": "string"
|
|
5806
5647
|
},
|
|
5807
5648
|
"image": {
|
|
5808
|
-
"
|
|
5809
|
-
{
|
|
5810
|
-
"items": {
|
|
5811
|
-
"anyOf": [
|
|
5812
|
-
{
|
|
5813
|
-
"additionalProperties": false,
|
|
5814
|
-
"properties": {
|
|
5815
|
-
"key": {
|
|
5816
|
-
"description": "The key used to access the value used for the preview.",
|
|
5817
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5818
|
-
"type": "string"
|
|
5819
|
-
}
|
|
5820
|
-
},
|
|
5821
|
-
"required": [
|
|
5822
|
-
"key"
|
|
5823
|
-
],
|
|
5824
|
-
"type": "object"
|
|
5825
|
-
},
|
|
5826
|
-
{
|
|
5827
|
-
"type": "string"
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"type": "boolean"
|
|
5831
|
-
}
|
|
5832
|
-
]
|
|
5833
|
-
},
|
|
5834
|
-
"type": "array"
|
|
5835
|
-
},
|
|
5836
|
-
{
|
|
5837
|
-
"type": "string"
|
|
5838
|
-
},
|
|
5839
|
-
{
|
|
5840
|
-
"type": "boolean"
|
|
5841
|
-
}
|
|
5842
|
-
],
|
|
5649
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5843
5650
|
"description": "Controls the image shown per item.",
|
|
5844
5651
|
"markdownDescription": "Controls the image shown per item."
|
|
5845
5652
|
},
|
|
5846
5653
|
"text": {
|
|
5847
|
-
"
|
|
5848
|
-
{
|
|
5849
|
-
"items": {
|
|
5850
|
-
"anyOf": [
|
|
5851
|
-
{
|
|
5852
|
-
"additionalProperties": false,
|
|
5853
|
-
"properties": {
|
|
5854
|
-
"key": {
|
|
5855
|
-
"description": "The key used to access the value used for the preview.",
|
|
5856
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5857
|
-
"type": "string"
|
|
5858
|
-
}
|
|
5859
|
-
},
|
|
5860
|
-
"required": [
|
|
5861
|
-
"key"
|
|
5862
|
-
],
|
|
5863
|
-
"type": "object"
|
|
5864
|
-
},
|
|
5865
|
-
{
|
|
5866
|
-
"type": "string"
|
|
5867
|
-
},
|
|
5868
|
-
{
|
|
5869
|
-
"type": "boolean"
|
|
5870
|
-
}
|
|
5871
|
-
]
|
|
5872
|
-
},
|
|
5873
|
-
"type": "array"
|
|
5874
|
-
},
|
|
5875
|
-
{
|
|
5876
|
-
"type": "string"
|
|
5877
|
-
},
|
|
5878
|
-
{
|
|
5879
|
-
"type": "boolean"
|
|
5880
|
-
}
|
|
5881
|
-
],
|
|
5654
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5882
5655
|
"description": "Controls the main text shown per item.",
|
|
5883
5656
|
"markdownDescription": "Controls the main text shown per item."
|
|
5884
5657
|
}
|
|
5885
5658
|
},
|
|
5886
5659
|
"type": "object"
|
|
5887
5660
|
},
|
|
5888
|
-
"
|
|
5661
|
+
"PreviewKeyEntry": {
|
|
5889
5662
|
"additionalProperties": false,
|
|
5890
5663
|
"properties": {
|
|
5891
|
-
"
|
|
5892
|
-
"
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
],
|
|
5908
|
-
"type": "object"
|
|
5909
|
-
},
|
|
5910
|
-
{
|
|
5911
|
-
"type": "string"
|
|
5912
|
-
},
|
|
5913
|
-
{
|
|
5914
|
-
"type": "boolean"
|
|
5915
|
-
}
|
|
5916
|
-
]
|
|
5917
|
-
},
|
|
5918
|
-
"type": "array"
|
|
5919
|
-
},
|
|
5920
|
-
{
|
|
5921
|
-
"type": "string"
|
|
5922
|
-
},
|
|
5923
|
-
{
|
|
5924
|
-
"type": "boolean"
|
|
5925
|
-
}
|
|
5926
|
-
],
|
|
5664
|
+
"key": {
|
|
5665
|
+
"description": "The key used to access the value used for the preview.",
|
|
5666
|
+
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5667
|
+
"type": "string"
|
|
5668
|
+
}
|
|
5669
|
+
},
|
|
5670
|
+
"required": [
|
|
5671
|
+
"key"
|
|
5672
|
+
],
|
|
5673
|
+
"type": "object"
|
|
5674
|
+
},
|
|
5675
|
+
"PreviewMetadata": {
|
|
5676
|
+
"additionalProperties": false,
|
|
5677
|
+
"properties": {
|
|
5678
|
+
"icon": {
|
|
5679
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5927
5680
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5928
5681
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5929
5682
|
},
|
|
@@ -5933,80 +5686,12 @@
|
|
|
5933
5686
|
"type": "string"
|
|
5934
5687
|
},
|
|
5935
5688
|
"image": {
|
|
5936
|
-
"
|
|
5937
|
-
{
|
|
5938
|
-
"items": {
|
|
5939
|
-
"anyOf": [
|
|
5940
|
-
{
|
|
5941
|
-
"additionalProperties": false,
|
|
5942
|
-
"properties": {
|
|
5943
|
-
"key": {
|
|
5944
|
-
"description": "The key used to access the value used for the preview.",
|
|
5945
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5946
|
-
"type": "string"
|
|
5947
|
-
}
|
|
5948
|
-
},
|
|
5949
|
-
"required": [
|
|
5950
|
-
"key"
|
|
5951
|
-
],
|
|
5952
|
-
"type": "object"
|
|
5953
|
-
},
|
|
5954
|
-
{
|
|
5955
|
-
"type": "string"
|
|
5956
|
-
},
|
|
5957
|
-
{
|
|
5958
|
-
"type": "boolean"
|
|
5959
|
-
}
|
|
5960
|
-
]
|
|
5961
|
-
},
|
|
5962
|
-
"type": "array"
|
|
5963
|
-
},
|
|
5964
|
-
{
|
|
5965
|
-
"type": "string"
|
|
5966
|
-
},
|
|
5967
|
-
{
|
|
5968
|
-
"type": "boolean"
|
|
5969
|
-
}
|
|
5970
|
-
],
|
|
5689
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5971
5690
|
"description": "Controls the image shown per item.",
|
|
5972
5691
|
"markdownDescription": "Controls the image shown per item."
|
|
5973
5692
|
},
|
|
5974
5693
|
"text": {
|
|
5975
|
-
"
|
|
5976
|
-
{
|
|
5977
|
-
"items": {
|
|
5978
|
-
"anyOf": [
|
|
5979
|
-
{
|
|
5980
|
-
"additionalProperties": false,
|
|
5981
|
-
"properties": {
|
|
5982
|
-
"key": {
|
|
5983
|
-
"description": "The key used to access the value used for the preview.",
|
|
5984
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5985
|
-
"type": "string"
|
|
5986
|
-
}
|
|
5987
|
-
},
|
|
5988
|
-
"required": [
|
|
5989
|
-
"key"
|
|
5990
|
-
],
|
|
5991
|
-
"type": "object"
|
|
5992
|
-
},
|
|
5993
|
-
{
|
|
5994
|
-
"type": "string"
|
|
5995
|
-
},
|
|
5996
|
-
{
|
|
5997
|
-
"type": "boolean"
|
|
5998
|
-
}
|
|
5999
|
-
]
|
|
6000
|
-
},
|
|
6001
|
-
"type": "array"
|
|
6002
|
-
},
|
|
6003
|
-
{
|
|
6004
|
-
"type": "string"
|
|
6005
|
-
},
|
|
6006
|
-
{
|
|
6007
|
-
"type": "boolean"
|
|
6008
|
-
}
|
|
6009
|
-
],
|
|
5694
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6010
5695
|
"description": "Controls the main text shown per item.",
|
|
6011
5696
|
"markdownDescription": "Controls the main text shown per item."
|
|
6012
5697
|
}
|
|
@@ -6295,8 +5980,18 @@
|
|
|
6295
5980
|
"type": "string"
|
|
6296
5981
|
},
|
|
6297
5982
|
"code": {
|
|
6298
|
-
"description": "Enables
|
|
6299
|
-
"markdownDescription": "Enables
|
|
5983
|
+
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5984
|
+
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5985
|
+
"type": "boolean"
|
|
5986
|
+
},
|
|
5987
|
+
"code_block": {
|
|
5988
|
+
"description": "Enables a control to insert a code block.",
|
|
5989
|
+
"markdownDescription": "Enables a control to insert a code block.",
|
|
5990
|
+
"type": "boolean"
|
|
5991
|
+
},
|
|
5992
|
+
"code_inline": {
|
|
5993
|
+
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
5994
|
+
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
6300
5995
|
"type": "boolean"
|
|
6301
5996
|
},
|
|
6302
5997
|
"copyformatting": {
|
|
@@ -6304,12 +5999,6 @@
|
|
|
6304
5999
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
6305
6000
|
"type": "boolean"
|
|
6306
6001
|
},
|
|
6307
|
-
"correct_orientation": {
|
|
6308
|
-
"default": true,
|
|
6309
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
6310
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
6311
|
-
"type": "boolean"
|
|
6312
|
-
},
|
|
6313
6002
|
"embed": {
|
|
6314
6003
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
6315
6004
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
@@ -6386,7 +6075,8 @@
|
|
|
6386
6075
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
6387
6076
|
"enum": [
|
|
6388
6077
|
"image/jpeg",
|
|
6389
|
-
"image/png"
|
|
6078
|
+
"image/png",
|
|
6079
|
+
"image/webp"
|
|
6390
6080
|
],
|
|
6391
6081
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
6392
6082
|
"type": "string"
|
|
@@ -6521,16 +6211,18 @@
|
|
|
6521
6211
|
"properties": {
|
|
6522
6212
|
"_array_structures": {
|
|
6523
6213
|
"additionalProperties": {},
|
|
6524
|
-
"
|
|
6525
|
-
"
|
|
6214
|
+
"deprecated": "Use _structures instead.",
|
|
6215
|
+
"description": "Now known as _structures.",
|
|
6216
|
+
"markdownDescription": "Now known as _structures.",
|
|
6526
6217
|
"type": "object"
|
|
6527
6218
|
},
|
|
6528
6219
|
"_comments": {
|
|
6529
6220
|
"additionalProperties": {
|
|
6530
6221
|
"type": "string"
|
|
6531
6222
|
},
|
|
6532
|
-
"
|
|
6533
|
-
"
|
|
6223
|
+
"deprecated": "Use _inputs instead.",
|
|
6224
|
+
"description": "Now part of _inputs.*.comment.",
|
|
6225
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
6534
6226
|
"type": "object"
|
|
6535
6227
|
},
|
|
6536
6228
|
"_editables": {
|
|
@@ -6559,8 +6251,9 @@
|
|
|
6559
6251
|
"additionalProperties": {},
|
|
6560
6252
|
"type": "object"
|
|
6561
6253
|
},
|
|
6562
|
-
"
|
|
6563
|
-
"
|
|
6254
|
+
"deprecated": "Use _inputs instead.",
|
|
6255
|
+
"description": "Now part of _inputs.*.options.",
|
|
6256
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
6564
6257
|
"type": "object"
|
|
6565
6258
|
},
|
|
6566
6259
|
"_select_data": {
|
|
@@ -6758,80 +6451,12 @@
|
|
|
6758
6451
|
"additionalProperties": false,
|
|
6759
6452
|
"properties": {
|
|
6760
6453
|
"icon": {
|
|
6761
|
-
"
|
|
6762
|
-
{
|
|
6763
|
-
"items": {
|
|
6764
|
-
"anyOf": [
|
|
6765
|
-
{
|
|
6766
|
-
"additionalProperties": false,
|
|
6767
|
-
"properties": {
|
|
6768
|
-
"key": {
|
|
6769
|
-
"description": "The key used to access the value used for the preview.",
|
|
6770
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6771
|
-
"type": "string"
|
|
6772
|
-
}
|
|
6773
|
-
},
|
|
6774
|
-
"required": [
|
|
6775
|
-
"key"
|
|
6776
|
-
],
|
|
6777
|
-
"type": "object"
|
|
6778
|
-
},
|
|
6779
|
-
{
|
|
6780
|
-
"type": "string"
|
|
6781
|
-
},
|
|
6782
|
-
{
|
|
6783
|
-
"type": "boolean"
|
|
6784
|
-
}
|
|
6785
|
-
]
|
|
6786
|
-
},
|
|
6787
|
-
"type": "array"
|
|
6788
|
-
},
|
|
6789
|
-
{
|
|
6790
|
-
"type": "string"
|
|
6791
|
-
},
|
|
6792
|
-
{
|
|
6793
|
-
"type": "boolean"
|
|
6794
|
-
}
|
|
6795
|
-
],
|
|
6454
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6796
6455
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
6797
6456
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
6798
6457
|
},
|
|
6799
6458
|
"text": {
|
|
6800
|
-
"
|
|
6801
|
-
{
|
|
6802
|
-
"items": {
|
|
6803
|
-
"anyOf": [
|
|
6804
|
-
{
|
|
6805
|
-
"additionalProperties": false,
|
|
6806
|
-
"properties": {
|
|
6807
|
-
"key": {
|
|
6808
|
-
"description": "The key used to access the value used for the preview.",
|
|
6809
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6810
|
-
"type": "string"
|
|
6811
|
-
}
|
|
6812
|
-
},
|
|
6813
|
-
"required": [
|
|
6814
|
-
"key"
|
|
6815
|
-
],
|
|
6816
|
-
"type": "object"
|
|
6817
|
-
},
|
|
6818
|
-
{
|
|
6819
|
-
"type": "string"
|
|
6820
|
-
},
|
|
6821
|
-
{
|
|
6822
|
-
"type": "boolean"
|
|
6823
|
-
}
|
|
6824
|
-
]
|
|
6825
|
-
},
|
|
6826
|
-
"type": "array"
|
|
6827
|
-
},
|
|
6828
|
-
{
|
|
6829
|
-
"type": "string"
|
|
6830
|
-
},
|
|
6831
|
-
{
|
|
6832
|
-
"type": "boolean"
|
|
6833
|
-
}
|
|
6834
|
-
],
|
|
6459
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6835
6460
|
"description": "Controls the main text shown per item.",
|
|
6836
6461
|
"markdownDescription": "Controls the main text shown per item."
|
|
6837
6462
|
}
|
|
@@ -6941,6 +6566,354 @@
|
|
|
6941
6566
|
},
|
|
6942
6567
|
"type": "object"
|
|
6943
6568
|
},
|
|
6569
|
+
"SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
|
|
6570
|
+
"additionalProperties": false,
|
|
6571
|
+
"properties": {
|
|
6572
|
+
"exclude": {
|
|
6573
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6574
|
+
"items": {
|
|
6575
|
+
"enum": [
|
|
6576
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6577
|
+
"_cc_jekyll_unknown_tag",
|
|
6578
|
+
"jekyll_highlight",
|
|
6579
|
+
"_cc_jekyll_template",
|
|
6580
|
+
"jekyll_raw",
|
|
6581
|
+
"jekyll_link",
|
|
6582
|
+
"jekyll_post_url"
|
|
6583
|
+
],
|
|
6584
|
+
"type": "string"
|
|
6585
|
+
},
|
|
6586
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6587
|
+
"type": "array"
|
|
6588
|
+
},
|
|
6589
|
+
"include": {
|
|
6590
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6591
|
+
"items": {
|
|
6592
|
+
"enum": [
|
|
6593
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6594
|
+
"_cc_jekyll_unknown_tag",
|
|
6595
|
+
"jekyll_highlight",
|
|
6596
|
+
"_cc_jekyll_template",
|
|
6597
|
+
"jekyll_raw",
|
|
6598
|
+
"jekyll_link",
|
|
6599
|
+
"jekyll_post_url"
|
|
6600
|
+
],
|
|
6601
|
+
"type": "string"
|
|
6602
|
+
},
|
|
6603
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6604
|
+
"type": "array"
|
|
6605
|
+
}
|
|
6606
|
+
},
|
|
6607
|
+
"type": "object"
|
|
6608
|
+
},
|
|
6609
|
+
"SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
|
|
6610
|
+
"additionalProperties": false,
|
|
6611
|
+
"properties": {
|
|
6612
|
+
"exclude": {
|
|
6613
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6614
|
+
"items": {
|
|
6615
|
+
"enum": [
|
|
6616
|
+
"docusaurus_mdx_admonition",
|
|
6617
|
+
"docusaurus_mdx_tabs",
|
|
6618
|
+
"docusaurus_mdx_truncate",
|
|
6619
|
+
"docusaurus_mdx_codeblock"
|
|
6620
|
+
],
|
|
6621
|
+
"type": "string"
|
|
6622
|
+
},
|
|
6623
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6624
|
+
"type": "array"
|
|
6625
|
+
},
|
|
6626
|
+
"include": {
|
|
6627
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6628
|
+
"items": {
|
|
6629
|
+
"enum": [
|
|
6630
|
+
"docusaurus_mdx_admonition",
|
|
6631
|
+
"docusaurus_mdx_tabs",
|
|
6632
|
+
"docusaurus_mdx_truncate",
|
|
6633
|
+
"docusaurus_mdx_codeblock"
|
|
6634
|
+
],
|
|
6635
|
+
"type": "string"
|
|
6636
|
+
},
|
|
6637
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6638
|
+
"type": "array"
|
|
6639
|
+
}
|
|
6640
|
+
},
|
|
6641
|
+
"type": "object"
|
|
6642
|
+
},
|
|
6643
|
+
"SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
|
|
6644
|
+
"additionalProperties": false,
|
|
6645
|
+
"properties": {
|
|
6646
|
+
"exclude": {
|
|
6647
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6648
|
+
"items": {
|
|
6649
|
+
"enum": [
|
|
6650
|
+
"eleventy_liquid_raw",
|
|
6651
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6652
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6653
|
+
"_cc_eleventy_liquid_template"
|
|
6654
|
+
],
|
|
6655
|
+
"type": "string"
|
|
6656
|
+
},
|
|
6657
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6658
|
+
"type": "array"
|
|
6659
|
+
},
|
|
6660
|
+
"include": {
|
|
6661
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6662
|
+
"items": {
|
|
6663
|
+
"enum": [
|
|
6664
|
+
"eleventy_liquid_raw",
|
|
6665
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6666
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6667
|
+
"_cc_eleventy_liquid_template"
|
|
6668
|
+
],
|
|
6669
|
+
"type": "string"
|
|
6670
|
+
},
|
|
6671
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6672
|
+
"type": "array"
|
|
6673
|
+
}
|
|
6674
|
+
},
|
|
6675
|
+
"type": "object"
|
|
6676
|
+
},
|
|
6677
|
+
"SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
|
|
6678
|
+
"additionalProperties": false,
|
|
6679
|
+
"properties": {
|
|
6680
|
+
"exclude": {
|
|
6681
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6682
|
+
"items": {
|
|
6683
|
+
"enum": [
|
|
6684
|
+
"eleventy_nunjucks_raw",
|
|
6685
|
+
"eleventy_nunjucks_verbatim",
|
|
6686
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6687
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6688
|
+
"_cc_eleventy_nunjucks_template"
|
|
6689
|
+
],
|
|
6690
|
+
"type": "string"
|
|
6691
|
+
},
|
|
6692
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6693
|
+
"type": "array"
|
|
6694
|
+
},
|
|
6695
|
+
"include": {
|
|
6696
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6697
|
+
"items": {
|
|
6698
|
+
"enum": [
|
|
6699
|
+
"eleventy_nunjucks_raw",
|
|
6700
|
+
"eleventy_nunjucks_verbatim",
|
|
6701
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6702
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6703
|
+
"_cc_eleventy_nunjucks_template"
|
|
6704
|
+
],
|
|
6705
|
+
"type": "string"
|
|
6706
|
+
},
|
|
6707
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6708
|
+
"type": "array"
|
|
6709
|
+
}
|
|
6710
|
+
},
|
|
6711
|
+
"type": "object"
|
|
6712
|
+
},
|
|
6713
|
+
"SnippetsImport<(\"hugo_summary_divider\"|\"hugo_highlight\"|\"hugo_figure\"|\"hugo_gist\"|\"hugo_instagram\"|\"hugo_param\"|\"hugo_ref\"|\"hugo_relref\"|\"hugo_tweet\"|\"hugo_vimeo\"|\"hugo_youtube\"|\"_cc_hugo_unknown_paired\"|\"_cc_hugo_unknown\"|\"_cc_hugo_unknown_paired_processed\"|\"_cc_hugo_unknown_processed\")>": {
|
|
6714
|
+
"additionalProperties": false,
|
|
6715
|
+
"properties": {
|
|
6716
|
+
"exclude": {
|
|
6717
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6718
|
+
"items": {
|
|
6719
|
+
"enum": [
|
|
6720
|
+
"hugo_summary_divider",
|
|
6721
|
+
"hugo_highlight",
|
|
6722
|
+
"hugo_figure",
|
|
6723
|
+
"hugo_gist",
|
|
6724
|
+
"hugo_instagram",
|
|
6725
|
+
"hugo_param",
|
|
6726
|
+
"hugo_ref",
|
|
6727
|
+
"hugo_relref",
|
|
6728
|
+
"hugo_tweet",
|
|
6729
|
+
"hugo_vimeo",
|
|
6730
|
+
"hugo_youtube",
|
|
6731
|
+
"_cc_hugo_unknown_paired",
|
|
6732
|
+
"_cc_hugo_unknown",
|
|
6733
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6734
|
+
"_cc_hugo_unknown_processed"
|
|
6735
|
+
],
|
|
6736
|
+
"type": "string"
|
|
6737
|
+
},
|
|
6738
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6739
|
+
"type": "array"
|
|
6740
|
+
},
|
|
6741
|
+
"include": {
|
|
6742
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6743
|
+
"items": {
|
|
6744
|
+
"enum": [
|
|
6745
|
+
"hugo_summary_divider",
|
|
6746
|
+
"hugo_highlight",
|
|
6747
|
+
"hugo_figure",
|
|
6748
|
+
"hugo_gist",
|
|
6749
|
+
"hugo_instagram",
|
|
6750
|
+
"hugo_param",
|
|
6751
|
+
"hugo_ref",
|
|
6752
|
+
"hugo_relref",
|
|
6753
|
+
"hugo_tweet",
|
|
6754
|
+
"hugo_vimeo",
|
|
6755
|
+
"hugo_youtube",
|
|
6756
|
+
"_cc_hugo_unknown_paired",
|
|
6757
|
+
"_cc_hugo_unknown",
|
|
6758
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6759
|
+
"_cc_hugo_unknown_processed"
|
|
6760
|
+
],
|
|
6761
|
+
"type": "string"
|
|
6762
|
+
},
|
|
6763
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6764
|
+
"type": "array"
|
|
6765
|
+
}
|
|
6766
|
+
},
|
|
6767
|
+
"type": "object"
|
|
6768
|
+
},
|
|
6769
|
+
"SnippetsImport<(\"import\"|\"_cc_mdx_unknown_export\"|\"_cc_mdx_unknown_export_expression\"|\"_cc_mdx_unknown_export_default\"|\"_cc_mdx_unknown_template\"|\"_cc_mdx_paired_unknown\"|\"_cc_mdx_unknown\")>": {
|
|
6770
|
+
"additionalProperties": false,
|
|
6771
|
+
"properties": {
|
|
6772
|
+
"exclude": {
|
|
6773
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6774
|
+
"items": {
|
|
6775
|
+
"enum": [
|
|
6776
|
+
"import",
|
|
6777
|
+
"_cc_mdx_unknown_export",
|
|
6778
|
+
"_cc_mdx_unknown_export_expression",
|
|
6779
|
+
"_cc_mdx_unknown_export_default",
|
|
6780
|
+
"_cc_mdx_unknown_template",
|
|
6781
|
+
"_cc_mdx_paired_unknown",
|
|
6782
|
+
"_cc_mdx_unknown"
|
|
6783
|
+
],
|
|
6784
|
+
"type": "string"
|
|
6785
|
+
},
|
|
6786
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6787
|
+
"type": "array"
|
|
6788
|
+
},
|
|
6789
|
+
"include": {
|
|
6790
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6791
|
+
"items": {
|
|
6792
|
+
"enum": [
|
|
6793
|
+
"import",
|
|
6794
|
+
"_cc_mdx_unknown_export",
|
|
6795
|
+
"_cc_mdx_unknown_export_expression",
|
|
6796
|
+
"_cc_mdx_unknown_export_default",
|
|
6797
|
+
"_cc_mdx_unknown_template",
|
|
6798
|
+
"_cc_mdx_paired_unknown",
|
|
6799
|
+
"_cc_mdx_unknown"
|
|
6800
|
+
],
|
|
6801
|
+
"type": "string"
|
|
6802
|
+
},
|
|
6803
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6804
|
+
"type": "array"
|
|
6805
|
+
}
|
|
6806
|
+
},
|
|
6807
|
+
"type": "object"
|
|
6808
|
+
},
|
|
6809
|
+
"SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
|
|
6810
|
+
"additionalProperties": false,
|
|
6811
|
+
"properties": {
|
|
6812
|
+
"exclude": {
|
|
6813
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6814
|
+
"items": {
|
|
6815
|
+
"enum": [
|
|
6816
|
+
"markdoc_id_annotation",
|
|
6817
|
+
"markdoc_class_annotation",
|
|
6818
|
+
"markdoc_table",
|
|
6819
|
+
"_cc_markdoc_unknown_tag",
|
|
6820
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6821
|
+
"_cc_markdoc_unknown_template"
|
|
6822
|
+
],
|
|
6823
|
+
"type": "string"
|
|
6824
|
+
},
|
|
6825
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6826
|
+
"type": "array"
|
|
6827
|
+
},
|
|
6828
|
+
"include": {
|
|
6829
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6830
|
+
"items": {
|
|
6831
|
+
"enum": [
|
|
6832
|
+
"markdoc_id_annotation",
|
|
6833
|
+
"markdoc_class_annotation",
|
|
6834
|
+
"markdoc_table",
|
|
6835
|
+
"_cc_markdoc_unknown_tag",
|
|
6836
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6837
|
+
"_cc_markdoc_unknown_template"
|
|
6838
|
+
],
|
|
6839
|
+
"type": "string"
|
|
6840
|
+
},
|
|
6841
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6842
|
+
"type": "array"
|
|
6843
|
+
}
|
|
6844
|
+
},
|
|
6845
|
+
"type": "object"
|
|
6846
|
+
},
|
|
6847
|
+
"SnippetsImport<(\"python_markdown_abbreviation\"|\"python_markdown_admonition\"|\"python_markdown_arithmatex\"|\"python_markdown_attribute_list\"|\"python_markdown_code_block\"|\"python_markdown_collapsible_admonition\"|\"python_markdown_tabs\"|\"python_markdown_footnote\"|\"python_markdown_footnote_marker\"|\"python_markdown_icon\"|\"python_markdown_image\"|\"python_markdown_inline_arithmatex\"|\"python_markdown_inline_code\"|\"python_markdown_link\"|\"python_markdown_reference_image\"|\"python_markdown_reference_template_image\"|\"python_markdown_reference_link\"|\"python_markdown_reference\"|\"python_markdown_reference_template\"|\"python_markdown_block_snippet\"|\"_cc_python_markdown_unknown_snippet\"|\"_cc_python_markdown_unknown_markdown_in_html\")>": {
|
|
6848
|
+
"additionalProperties": false,
|
|
6849
|
+
"properties": {
|
|
6850
|
+
"exclude": {
|
|
6851
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6852
|
+
"items": {
|
|
6853
|
+
"enum": [
|
|
6854
|
+
"python_markdown_abbreviation",
|
|
6855
|
+
"python_markdown_admonition",
|
|
6856
|
+
"python_markdown_arithmatex",
|
|
6857
|
+
"python_markdown_attribute_list",
|
|
6858
|
+
"python_markdown_code_block",
|
|
6859
|
+
"python_markdown_collapsible_admonition",
|
|
6860
|
+
"python_markdown_tabs",
|
|
6861
|
+
"python_markdown_footnote",
|
|
6862
|
+
"python_markdown_footnote_marker",
|
|
6863
|
+
"python_markdown_icon",
|
|
6864
|
+
"python_markdown_image",
|
|
6865
|
+
"python_markdown_inline_arithmatex",
|
|
6866
|
+
"python_markdown_inline_code",
|
|
6867
|
+
"python_markdown_link",
|
|
6868
|
+
"python_markdown_reference_image",
|
|
6869
|
+
"python_markdown_reference_template_image",
|
|
6870
|
+
"python_markdown_reference_link",
|
|
6871
|
+
"python_markdown_reference",
|
|
6872
|
+
"python_markdown_reference_template",
|
|
6873
|
+
"python_markdown_block_snippet",
|
|
6874
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6875
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6876
|
+
],
|
|
6877
|
+
"type": "string"
|
|
6878
|
+
},
|
|
6879
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6880
|
+
"type": "array"
|
|
6881
|
+
},
|
|
6882
|
+
"include": {
|
|
6883
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6884
|
+
"items": {
|
|
6885
|
+
"enum": [
|
|
6886
|
+
"python_markdown_abbreviation",
|
|
6887
|
+
"python_markdown_admonition",
|
|
6888
|
+
"python_markdown_arithmatex",
|
|
6889
|
+
"python_markdown_attribute_list",
|
|
6890
|
+
"python_markdown_code_block",
|
|
6891
|
+
"python_markdown_collapsible_admonition",
|
|
6892
|
+
"python_markdown_tabs",
|
|
6893
|
+
"python_markdown_footnote",
|
|
6894
|
+
"python_markdown_footnote_marker",
|
|
6895
|
+
"python_markdown_icon",
|
|
6896
|
+
"python_markdown_image",
|
|
6897
|
+
"python_markdown_inline_arithmatex",
|
|
6898
|
+
"python_markdown_inline_code",
|
|
6899
|
+
"python_markdown_link",
|
|
6900
|
+
"python_markdown_reference_image",
|
|
6901
|
+
"python_markdown_reference_template_image",
|
|
6902
|
+
"python_markdown_reference_link",
|
|
6903
|
+
"python_markdown_reference",
|
|
6904
|
+
"python_markdown_reference_template",
|
|
6905
|
+
"python_markdown_block_snippet",
|
|
6906
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6907
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6908
|
+
],
|
|
6909
|
+
"type": "string"
|
|
6910
|
+
},
|
|
6911
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6912
|
+
"type": "array"
|
|
6913
|
+
}
|
|
6914
|
+
},
|
|
6915
|
+
"type": "object"
|
|
6916
|
+
},
|
|
6944
6917
|
"SnippetsImports": {
|
|
6945
6918
|
"additionalProperties": false,
|
|
6946
6919
|
"properties": {
|
|
@@ -6950,38 +6923,7 @@
|
|
|
6950
6923
|
"type": "boolean"
|
|
6951
6924
|
},
|
|
6952
6925
|
{
|
|
6953
|
-
"
|
|
6954
|
-
"properties": {
|
|
6955
|
-
"exclude": {
|
|
6956
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6957
|
-
"items": {
|
|
6958
|
-
"enum": [
|
|
6959
|
-
"docusaurus_mdx_admonition",
|
|
6960
|
-
"docusaurus_mdx_tabs",
|
|
6961
|
-
"docusaurus_mdx_truncate",
|
|
6962
|
-
"docusaurus_mdx_codeblock"
|
|
6963
|
-
],
|
|
6964
|
-
"type": "string"
|
|
6965
|
-
},
|
|
6966
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6967
|
-
"type": "array"
|
|
6968
|
-
},
|
|
6969
|
-
"include": {
|
|
6970
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6971
|
-
"items": {
|
|
6972
|
-
"enum": [
|
|
6973
|
-
"docusaurus_mdx_admonition",
|
|
6974
|
-
"docusaurus_mdx_tabs",
|
|
6975
|
-
"docusaurus_mdx_truncate",
|
|
6976
|
-
"docusaurus_mdx_codeblock"
|
|
6977
|
-
],
|
|
6978
|
-
"type": "string"
|
|
6979
|
-
},
|
|
6980
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6981
|
-
"type": "array"
|
|
6982
|
-
}
|
|
6983
|
-
},
|
|
6984
|
-
"type": "object"
|
|
6926
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22docusaurus_mdx_admonition%22%7C%22docusaurus_mdx_tabs%22%7C%22docusaurus_mdx_truncate%22%7C%22docusaurus_mdx_codeblock%22)%3E"
|
|
6985
6927
|
}
|
|
6986
6928
|
],
|
|
6987
6929
|
"description": "Default snippets for Docusaurus SSG.",
|
|
@@ -6993,38 +6935,7 @@
|
|
|
6993
6935
|
"type": "boolean"
|
|
6994
6936
|
},
|
|
6995
6937
|
{
|
|
6996
|
-
"
|
|
6997
|
-
"properties": {
|
|
6998
|
-
"exclude": {
|
|
6999
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7000
|
-
"items": {
|
|
7001
|
-
"enum": [
|
|
7002
|
-
"eleventy_liquid_raw",
|
|
7003
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
7004
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
7005
|
-
"_cc_eleventy_liquid_template"
|
|
7006
|
-
],
|
|
7007
|
-
"type": "string"
|
|
7008
|
-
},
|
|
7009
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7010
|
-
"type": "array"
|
|
7011
|
-
},
|
|
7012
|
-
"include": {
|
|
7013
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7014
|
-
"items": {
|
|
7015
|
-
"enum": [
|
|
7016
|
-
"eleventy_liquid_raw",
|
|
7017
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
7018
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
7019
|
-
"_cc_eleventy_liquid_template"
|
|
7020
|
-
],
|
|
7021
|
-
"type": "string"
|
|
7022
|
-
},
|
|
7023
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7024
|
-
"type": "array"
|
|
7025
|
-
}
|
|
7026
|
-
},
|
|
7027
|
-
"type": "object"
|
|
6938
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22eleventy_liquid_raw%22%7C%22_cc_eleventy_liquid_unknown_paired_shortcode%22%7C%22_cc_eleventy_liquid_unknown_shortcode%22%7C%22_cc_eleventy_liquid_template%22)%3E"
|
|
7028
6939
|
}
|
|
7029
6940
|
],
|
|
7030
6941
|
"description": "Default snippets for Eleventy SSG Liquid files.",
|
|
@@ -7036,40 +6947,7 @@
|
|
|
7036
6947
|
"type": "boolean"
|
|
7037
6948
|
},
|
|
7038
6949
|
{
|
|
7039
|
-
"
|
|
7040
|
-
"properties": {
|
|
7041
|
-
"exclude": {
|
|
7042
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7043
|
-
"items": {
|
|
7044
|
-
"enum": [
|
|
7045
|
-
"eleventy_nunjucks_raw",
|
|
7046
|
-
"eleventy_nunjucks_verbatim",
|
|
7047
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
7048
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
7049
|
-
"_cc_eleventy_nunjucks_template"
|
|
7050
|
-
],
|
|
7051
|
-
"type": "string"
|
|
7052
|
-
},
|
|
7053
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7054
|
-
"type": "array"
|
|
7055
|
-
},
|
|
7056
|
-
"include": {
|
|
7057
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7058
|
-
"items": {
|
|
7059
|
-
"enum": [
|
|
7060
|
-
"eleventy_nunjucks_raw",
|
|
7061
|
-
"eleventy_nunjucks_verbatim",
|
|
7062
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
7063
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
7064
|
-
"_cc_eleventy_nunjucks_template"
|
|
7065
|
-
],
|
|
7066
|
-
"type": "string"
|
|
7067
|
-
},
|
|
7068
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7069
|
-
"type": "array"
|
|
7070
|
-
}
|
|
7071
|
-
},
|
|
7072
|
-
"type": "object"
|
|
6950
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22eleventy_nunjucks_raw%22%7C%22eleventy_nunjucks_verbatim%22%7C%22_cc_eleventy_nunjucks_unknown_paired_shortcode%22%7C%22_cc_eleventy_nunjucks_unknown_shortcode%22%7C%22_cc_eleventy_nunjucks_template%22)%3E"
|
|
7073
6951
|
}
|
|
7074
6952
|
],
|
|
7075
6953
|
"description": "Default snippets for Eleventy SSG Nunjucks files.",
|
|
@@ -7081,60 +6959,7 @@
|
|
|
7081
6959
|
"type": "boolean"
|
|
7082
6960
|
},
|
|
7083
6961
|
{
|
|
7084
|
-
"
|
|
7085
|
-
"properties": {
|
|
7086
|
-
"exclude": {
|
|
7087
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7088
|
-
"items": {
|
|
7089
|
-
"enum": [
|
|
7090
|
-
"hugo_summary_divider",
|
|
7091
|
-
"hugo_highlight",
|
|
7092
|
-
"hugo_figure",
|
|
7093
|
-
"hugo_gist",
|
|
7094
|
-
"hugo_instagram",
|
|
7095
|
-
"hugo_param",
|
|
7096
|
-
"hugo_ref",
|
|
7097
|
-
"hugo_relref",
|
|
7098
|
-
"hugo_tweet",
|
|
7099
|
-
"hugo_vimeo",
|
|
7100
|
-
"hugo_youtube",
|
|
7101
|
-
"_cc_hugo_unknown_paired",
|
|
7102
|
-
"_cc_hugo_unknown",
|
|
7103
|
-
"_cc_hugo_unknown_paired_processed",
|
|
7104
|
-
"_cc_hugo_unknown_processed"
|
|
7105
|
-
],
|
|
7106
|
-
"type": "string"
|
|
7107
|
-
},
|
|
7108
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7109
|
-
"type": "array"
|
|
7110
|
-
},
|
|
7111
|
-
"include": {
|
|
7112
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7113
|
-
"items": {
|
|
7114
|
-
"enum": [
|
|
7115
|
-
"hugo_summary_divider",
|
|
7116
|
-
"hugo_highlight",
|
|
7117
|
-
"hugo_figure",
|
|
7118
|
-
"hugo_gist",
|
|
7119
|
-
"hugo_instagram",
|
|
7120
|
-
"hugo_param",
|
|
7121
|
-
"hugo_ref",
|
|
7122
|
-
"hugo_relref",
|
|
7123
|
-
"hugo_tweet",
|
|
7124
|
-
"hugo_vimeo",
|
|
7125
|
-
"hugo_youtube",
|
|
7126
|
-
"_cc_hugo_unknown_paired",
|
|
7127
|
-
"_cc_hugo_unknown",
|
|
7128
|
-
"_cc_hugo_unknown_paired_processed",
|
|
7129
|
-
"_cc_hugo_unknown_processed"
|
|
7130
|
-
],
|
|
7131
|
-
"type": "string"
|
|
7132
|
-
},
|
|
7133
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7134
|
-
"type": "array"
|
|
7135
|
-
}
|
|
7136
|
-
},
|
|
7137
|
-
"type": "object"
|
|
6962
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22hugo_summary_divider%22%7C%22hugo_highlight%22%7C%22hugo_figure%22%7C%22hugo_gist%22%7C%22hugo_instagram%22%7C%22hugo_param%22%7C%22hugo_ref%22%7C%22hugo_relref%22%7C%22hugo_tweet%22%7C%22hugo_vimeo%22%7C%22hugo_youtube%22%7C%22_cc_hugo_unknown_paired%22%7C%22_cc_hugo_unknown%22%7C%22_cc_hugo_unknown_paired_processed%22%7C%22_cc_hugo_unknown_processed%22)%3E"
|
|
7138
6963
|
}
|
|
7139
6964
|
],
|
|
7140
6965
|
"description": "Default snippets for Hugo SSG.",
|
|
@@ -7146,44 +6971,7 @@
|
|
|
7146
6971
|
"type": "boolean"
|
|
7147
6972
|
},
|
|
7148
6973
|
{
|
|
7149
|
-
"
|
|
7150
|
-
"properties": {
|
|
7151
|
-
"exclude": {
|
|
7152
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7153
|
-
"items": {
|
|
7154
|
-
"enum": [
|
|
7155
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
7156
|
-
"_cc_jekyll_unknown_tag",
|
|
7157
|
-
"jekyll_highlight",
|
|
7158
|
-
"_cc_jekyll_template",
|
|
7159
|
-
"jekyll_raw",
|
|
7160
|
-
"jekyll_link",
|
|
7161
|
-
"jekyll_post_url"
|
|
7162
|
-
],
|
|
7163
|
-
"type": "string"
|
|
7164
|
-
},
|
|
7165
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7166
|
-
"type": "array"
|
|
7167
|
-
},
|
|
7168
|
-
"include": {
|
|
7169
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7170
|
-
"items": {
|
|
7171
|
-
"enum": [
|
|
7172
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
7173
|
-
"_cc_jekyll_unknown_tag",
|
|
7174
|
-
"jekyll_highlight",
|
|
7175
|
-
"_cc_jekyll_template",
|
|
7176
|
-
"jekyll_raw",
|
|
7177
|
-
"jekyll_link",
|
|
7178
|
-
"jekyll_post_url"
|
|
7179
|
-
],
|
|
7180
|
-
"type": "string"
|
|
7181
|
-
},
|
|
7182
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7183
|
-
"type": "array"
|
|
7184
|
-
}
|
|
7185
|
-
},
|
|
7186
|
-
"type": "object"
|
|
6974
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22_cc_jekyll_unknown_paired_tag%22%7C%22_cc_jekyll_unknown_tag%22%7C%22jekyll_highlight%22%7C%22_cc_jekyll_template%22%7C%22jekyll_raw%22%7C%22jekyll_link%22%7C%22jekyll_post_url%22)%3E"
|
|
7187
6975
|
}
|
|
7188
6976
|
],
|
|
7189
6977
|
"description": "Default snippets for Jekyll SSG.",
|
|
@@ -7195,42 +6983,7 @@
|
|
|
7195
6983
|
"type": "boolean"
|
|
7196
6984
|
},
|
|
7197
6985
|
{
|
|
7198
|
-
"
|
|
7199
|
-
"properties": {
|
|
7200
|
-
"exclude": {
|
|
7201
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7202
|
-
"items": {
|
|
7203
|
-
"enum": [
|
|
7204
|
-
"markdoc_id_annotation",
|
|
7205
|
-
"markdoc_class_annotation",
|
|
7206
|
-
"markdoc_table",
|
|
7207
|
-
"_cc_markdoc_unknown_tag",
|
|
7208
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
7209
|
-
"_cc_markdoc_unknown_template"
|
|
7210
|
-
],
|
|
7211
|
-
"type": "string"
|
|
7212
|
-
},
|
|
7213
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7214
|
-
"type": "array"
|
|
7215
|
-
},
|
|
7216
|
-
"include": {
|
|
7217
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7218
|
-
"items": {
|
|
7219
|
-
"enum": [
|
|
7220
|
-
"markdoc_id_annotation",
|
|
7221
|
-
"markdoc_class_annotation",
|
|
7222
|
-
"markdoc_table",
|
|
7223
|
-
"_cc_markdoc_unknown_tag",
|
|
7224
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
7225
|
-
"_cc_markdoc_unknown_template"
|
|
7226
|
-
],
|
|
7227
|
-
"type": "string"
|
|
7228
|
-
},
|
|
7229
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7230
|
-
"type": "array"
|
|
7231
|
-
}
|
|
7232
|
-
},
|
|
7233
|
-
"type": "object"
|
|
6986
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22markdoc_id_annotation%22%7C%22markdoc_class_annotation%22%7C%22markdoc_table%22%7C%22_cc_markdoc_unknown_tag%22%7C%22_cc_markdoc_unknown_paired_tag%22%7C%22_cc_markdoc_unknown_template%22)%3E"
|
|
7234
6987
|
}
|
|
7235
6988
|
],
|
|
7236
6989
|
"description": "Default snippets for Markdoc-based content.",
|
|
@@ -7242,44 +6995,7 @@
|
|
|
7242
6995
|
"type": "boolean"
|
|
7243
6996
|
},
|
|
7244
6997
|
{
|
|
7245
|
-
"
|
|
7246
|
-
"properties": {
|
|
7247
|
-
"exclude": {
|
|
7248
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7249
|
-
"items": {
|
|
7250
|
-
"enum": [
|
|
7251
|
-
"import",
|
|
7252
|
-
"_cc_mdx_unknown_export",
|
|
7253
|
-
"_cc_mdx_unknown_export_expression",
|
|
7254
|
-
"_cc_mdx_unknown_export_default",
|
|
7255
|
-
"_cc_mdx_unknown_template",
|
|
7256
|
-
"_cc_mdx_paired_unknown",
|
|
7257
|
-
"_cc_mdx_unknown"
|
|
7258
|
-
],
|
|
7259
|
-
"type": "string"
|
|
7260
|
-
},
|
|
7261
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7262
|
-
"type": "array"
|
|
7263
|
-
},
|
|
7264
|
-
"include": {
|
|
7265
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7266
|
-
"items": {
|
|
7267
|
-
"enum": [
|
|
7268
|
-
"import",
|
|
7269
|
-
"_cc_mdx_unknown_export",
|
|
7270
|
-
"_cc_mdx_unknown_export_expression",
|
|
7271
|
-
"_cc_mdx_unknown_export_default",
|
|
7272
|
-
"_cc_mdx_unknown_template",
|
|
7273
|
-
"_cc_mdx_paired_unknown",
|
|
7274
|
-
"_cc_mdx_unknown"
|
|
7275
|
-
],
|
|
7276
|
-
"type": "string"
|
|
7277
|
-
},
|
|
7278
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7279
|
-
"type": "array"
|
|
7280
|
-
}
|
|
7281
|
-
},
|
|
7282
|
-
"type": "object"
|
|
6998
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22import%22%7C%22_cc_mdx_unknown_export%22%7C%22_cc_mdx_unknown_export_expression%22%7C%22_cc_mdx_unknown_export_default%22%7C%22_cc_mdx_unknown_template%22%7C%22_cc_mdx_paired_unknown%22%7C%22_cc_mdx_unknown%22)%3E"
|
|
7283
6999
|
}
|
|
7284
7000
|
],
|
|
7285
7001
|
"description": "Default snippets for MDX-based content.",
|
|
@@ -7291,74 +7007,7 @@
|
|
|
7291
7007
|
"type": "boolean"
|
|
7292
7008
|
},
|
|
7293
7009
|
{
|
|
7294
|
-
"
|
|
7295
|
-
"properties": {
|
|
7296
|
-
"exclude": {
|
|
7297
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7298
|
-
"items": {
|
|
7299
|
-
"enum": [
|
|
7300
|
-
"python_markdown_abbreviation",
|
|
7301
|
-
"python_markdown_admonition",
|
|
7302
|
-
"python_markdown_arithmatex",
|
|
7303
|
-
"python_markdown_attribute_list",
|
|
7304
|
-
"python_markdown_code_block",
|
|
7305
|
-
"python_markdown_collapsible_admonition",
|
|
7306
|
-
"python_markdown_tabs",
|
|
7307
|
-
"python_markdown_footnote",
|
|
7308
|
-
"python_markdown_footnote_marker",
|
|
7309
|
-
"python_markdown_icon",
|
|
7310
|
-
"python_markdown_image",
|
|
7311
|
-
"python_markdown_inline_arithmatex",
|
|
7312
|
-
"python_markdown_inline_code",
|
|
7313
|
-
"python_markdown_link",
|
|
7314
|
-
"python_markdown_reference_image",
|
|
7315
|
-
"python_markdown_reference_template_image",
|
|
7316
|
-
"python_markdown_reference_link",
|
|
7317
|
-
"python_markdown_reference",
|
|
7318
|
-
"python_markdown_reference_template",
|
|
7319
|
-
"python_markdown_block_snippet",
|
|
7320
|
-
"_cc_python_markdown_unknown_snippet",
|
|
7321
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
7322
|
-
],
|
|
7323
|
-
"type": "string"
|
|
7324
|
-
},
|
|
7325
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7326
|
-
"type": "array"
|
|
7327
|
-
},
|
|
7328
|
-
"include": {
|
|
7329
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7330
|
-
"items": {
|
|
7331
|
-
"enum": [
|
|
7332
|
-
"python_markdown_abbreviation",
|
|
7333
|
-
"python_markdown_admonition",
|
|
7334
|
-
"python_markdown_arithmatex",
|
|
7335
|
-
"python_markdown_attribute_list",
|
|
7336
|
-
"python_markdown_code_block",
|
|
7337
|
-
"python_markdown_collapsible_admonition",
|
|
7338
|
-
"python_markdown_tabs",
|
|
7339
|
-
"python_markdown_footnote",
|
|
7340
|
-
"python_markdown_footnote_marker",
|
|
7341
|
-
"python_markdown_icon",
|
|
7342
|
-
"python_markdown_image",
|
|
7343
|
-
"python_markdown_inline_arithmatex",
|
|
7344
|
-
"python_markdown_inline_code",
|
|
7345
|
-
"python_markdown_link",
|
|
7346
|
-
"python_markdown_reference_image",
|
|
7347
|
-
"python_markdown_reference_template_image",
|
|
7348
|
-
"python_markdown_reference_link",
|
|
7349
|
-
"python_markdown_reference",
|
|
7350
|
-
"python_markdown_reference_template",
|
|
7351
|
-
"python_markdown_block_snippet",
|
|
7352
|
-
"_cc_python_markdown_unknown_snippet",
|
|
7353
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
7354
|
-
],
|
|
7355
|
-
"type": "string"
|
|
7356
|
-
},
|
|
7357
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7358
|
-
"type": "array"
|
|
7359
|
-
}
|
|
7360
|
-
},
|
|
7361
|
-
"type": "object"
|
|
7010
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22python_markdown_abbreviation%22%7C%22python_markdown_admonition%22%7C%22python_markdown_arithmatex%22%7C%22python_markdown_attribute_list%22%7C%22python_markdown_code_block%22%7C%22python_markdown_collapsible_admonition%22%7C%22python_markdown_tabs%22%7C%22python_markdown_footnote%22%7C%22python_markdown_footnote_marker%22%7C%22python_markdown_icon%22%7C%22python_markdown_image%22%7C%22python_markdown_inline_arithmatex%22%7C%22python_markdown_inline_code%22%7C%22python_markdown_link%22%7C%22python_markdown_reference_image%22%7C%22python_markdown_reference_template_image%22%7C%22python_markdown_reference_link%22%7C%22python_markdown_reference%22%7C%22python_markdown_reference_template%22%7C%22python_markdown_block_snippet%22%7C%22_cc_python_markdown_unknown_snippet%22%7C%22_cc_python_markdown_unknown_markdown_in_html%22)%3E"
|
|
7362
7011
|
}
|
|
7363
7012
|
],
|
|
7364
7013
|
"description": "Default snippets for content using Python markdown extensions.",
|
|
@@ -7437,10 +7086,10 @@
|
|
|
7437
7086
|
"type": "number"
|
|
7438
7087
|
},
|
|
7439
7088
|
"theme": {
|
|
7089
|
+
"$ref": "#/definitions/Theme",
|
|
7440
7090
|
"default": "monokai",
|
|
7441
7091
|
"description": "Changes the color scheme for syntax highlighting in the editor.",
|
|
7442
|
-
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
7443
|
-
"type": "string"
|
|
7092
|
+
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
7444
7093
|
}
|
|
7445
7094
|
},
|
|
7446
7095
|
"type": "object"
|
|
@@ -7938,6 +7587,49 @@
|
|
|
7938
7587
|
},
|
|
7939
7588
|
"type": "object"
|
|
7940
7589
|
},
|
|
7590
|
+
"Theme": {
|
|
7591
|
+
"enum": [
|
|
7592
|
+
"ambiance",
|
|
7593
|
+
"chaos",
|
|
7594
|
+
"chrome",
|
|
7595
|
+
"clouds",
|
|
7596
|
+
"clouds_midnight",
|
|
7597
|
+
"cobalt",
|
|
7598
|
+
"crimson_editor",
|
|
7599
|
+
"dawn",
|
|
7600
|
+
"dracula",
|
|
7601
|
+
"dreamweaver",
|
|
7602
|
+
"eclipse",
|
|
7603
|
+
"github",
|
|
7604
|
+
"gob",
|
|
7605
|
+
"gruvbox",
|
|
7606
|
+
"idle_fingers",
|
|
7607
|
+
"iplastic",
|
|
7608
|
+
"katzenmilch",
|
|
7609
|
+
"kr_theme",
|
|
7610
|
+
"kuroir",
|
|
7611
|
+
"merbivore",
|
|
7612
|
+
"merbivore_soft",
|
|
7613
|
+
"mono_industrial",
|
|
7614
|
+
"monokai",
|
|
7615
|
+
"nord_dark",
|
|
7616
|
+
"pastel_on_dark",
|
|
7617
|
+
"solarized_dark",
|
|
7618
|
+
"solarized_light",
|
|
7619
|
+
"sqlserver",
|
|
7620
|
+
"terminal",
|
|
7621
|
+
"textmate",
|
|
7622
|
+
"tomorrow",
|
|
7623
|
+
"tomorrow_night",
|
|
7624
|
+
"tomorrow_night_blue",
|
|
7625
|
+
"tomorrow_night_bright",
|
|
7626
|
+
"tomorrow_night_eighties",
|
|
7627
|
+
"twilight",
|
|
7628
|
+
"vibrant_ink",
|
|
7629
|
+
"xcode"
|
|
7630
|
+
],
|
|
7631
|
+
"type": "string"
|
|
7632
|
+
},
|
|
7941
7633
|
"Timezone": {
|
|
7942
7634
|
"enum": [
|
|
7943
7635
|
"Africa/Abidjan",
|