@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$ref": "#/definitions/
|
|
2
|
+
"$ref": "#/definitions/ReaderConfiguration",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"definitions": {
|
|
5
5
|
"AddOption": {
|
|
@@ -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"
|
|
@@ -732,225 +747,10 @@
|
|
|
732
747
|
"type": "number"
|
|
733
748
|
},
|
|
734
749
|
"theme": {
|
|
750
|
+
"$ref": "#/definitions/Theme",
|
|
735
751
|
"default": "monokai",
|
|
736
752
|
"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"
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
"type": "object"
|
|
742
|
-
},
|
|
743
|
-
"CollectionConfig": {
|
|
744
|
-
"additionalProperties": false,
|
|
745
|
-
"properties": {
|
|
746
|
-
"_array_structures": {
|
|
747
|
-
"additionalProperties": {},
|
|
748
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
749
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
750
|
-
"type": "object"
|
|
751
|
-
},
|
|
752
|
-
"_comments": {
|
|
753
|
-
"additionalProperties": {
|
|
754
|
-
"type": "string"
|
|
755
|
-
},
|
|
756
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
757
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
758
|
-
"type": "object"
|
|
759
|
-
},
|
|
760
|
-
"_editables": {
|
|
761
|
-
"$ref": "#/definitions/Editables",
|
|
762
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
763
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
764
|
-
},
|
|
765
|
-
"_enabled_editors": {
|
|
766
|
-
"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.",
|
|
767
|
-
"items": {
|
|
768
|
-
"$ref": "#/definitions/EditorKey"
|
|
769
|
-
},
|
|
770
|
-
"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.",
|
|
771
|
-
"type": "array"
|
|
772
|
-
},
|
|
773
|
-
"_inputs": {
|
|
774
|
-
"additionalProperties": {
|
|
775
|
-
"$ref": "#/definitions/Input"
|
|
776
|
-
},
|
|
777
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
778
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
779
|
-
"type": "object"
|
|
780
|
-
},
|
|
781
|
-
"_options": {
|
|
782
|
-
"additionalProperties": {
|
|
783
|
-
"additionalProperties": {},
|
|
784
|
-
"type": "object"
|
|
785
|
-
},
|
|
786
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
787
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
788
|
-
"type": "object"
|
|
789
|
-
},
|
|
790
|
-
"_select_data": {
|
|
791
|
-
"additionalProperties": {
|
|
792
|
-
"$ref": "#/definitions/SelectValues"
|
|
793
|
-
},
|
|
794
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
795
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
796
|
-
"type": "object"
|
|
797
|
-
},
|
|
798
|
-
"_structures": {
|
|
799
|
-
"additionalProperties": {
|
|
800
|
-
"$ref": "#/definitions/Structure"
|
|
801
|
-
},
|
|
802
|
-
"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.",
|
|
803
|
-
"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.",
|
|
804
|
-
"type": "object"
|
|
805
|
-
},
|
|
806
|
-
"add_options": {
|
|
807
|
-
"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.",
|
|
808
|
-
"items": {
|
|
809
|
-
"$ref": "#/definitions/AddOption"
|
|
810
|
-
},
|
|
811
|
-
"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.",
|
|
812
|
-
"type": "array"
|
|
813
|
-
},
|
|
814
|
-
"create": {
|
|
815
|
-
"$ref": "#/definitions/Create",
|
|
816
|
-
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
817
|
-
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
818
|
-
},
|
|
819
|
-
"description": {
|
|
820
|
-
"description": "Text or Markdown to show above the collection file list.",
|
|
821
|
-
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
822
|
-
"type": "string"
|
|
823
|
-
},
|
|
824
|
-
"disable_add": {
|
|
825
|
-
"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.",
|
|
826
|
-
"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.",
|
|
827
|
-
"type": "boolean"
|
|
828
|
-
},
|
|
829
|
-
"disable_add_folder": {
|
|
830
|
-
"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.",
|
|
831
|
-
"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.",
|
|
832
|
-
"type": "boolean"
|
|
833
|
-
},
|
|
834
|
-
"disable_file_actions": {
|
|
835
|
-
"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.",
|
|
836
|
-
"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.",
|
|
837
|
-
"type": "boolean"
|
|
838
|
-
},
|
|
839
|
-
"documentation": {
|
|
840
|
-
"$ref": "#/definitions/Documentation",
|
|
841
|
-
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
842
|
-
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
843
|
-
},
|
|
844
|
-
"filter": {
|
|
845
|
-
"anyOf": [
|
|
846
|
-
{
|
|
847
|
-
"$ref": "#/definitions/Filter"
|
|
848
|
-
},
|
|
849
|
-
{
|
|
850
|
-
"$ref": "#/definitions/FilterBase"
|
|
851
|
-
}
|
|
852
|
-
],
|
|
853
|
-
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
854
|
-
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
855
|
-
},
|
|
856
|
-
"glob": {
|
|
857
|
-
"anyOf": [
|
|
858
|
-
{
|
|
859
|
-
"type": "string"
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
"items": {
|
|
863
|
-
"type": "string"
|
|
864
|
-
},
|
|
865
|
-
"type": "array"
|
|
866
|
-
}
|
|
867
|
-
],
|
|
868
|
-
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
869
|
-
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
870
|
-
},
|
|
871
|
-
"icon": {
|
|
872
|
-
"$ref": "#/definitions/Icon",
|
|
873
|
-
"description": "Sets an icon to use alongside references to this collection.",
|
|
874
|
-
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
875
|
-
},
|
|
876
|
-
"name": {
|
|
877
|
-
"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.",
|
|
878
|
-
"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.",
|
|
879
|
-
"type": "string"
|
|
880
|
-
},
|
|
881
|
-
"new_preview_url": {
|
|
882
|
-
"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.",
|
|
883
|
-
"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.",
|
|
884
|
-
"type": "string"
|
|
885
|
-
},
|
|
886
|
-
"output": {
|
|
887
|
-
"description": "Whether or not files in this collection produce files in the build output.",
|
|
888
|
-
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
889
|
-
"type": "boolean"
|
|
890
|
-
},
|
|
891
|
-
"parser": {
|
|
892
|
-
"description": "Overrides how each file in the collection is read. Detected automatically from file extension if unset.",
|
|
893
|
-
"enum": [
|
|
894
|
-
"csv",
|
|
895
|
-
"front-matter",
|
|
896
|
-
"json",
|
|
897
|
-
"properties",
|
|
898
|
-
"toml",
|
|
899
|
-
"yaml"
|
|
900
|
-
],
|
|
901
|
-
"markdownDescription": "Overrides how each file in the collection is read. Detected automatically from file extension\nif unset.",
|
|
902
|
-
"type": "string"
|
|
903
|
-
},
|
|
904
|
-
"path": {
|
|
905
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
906
|
-
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
907
|
-
"type": "string"
|
|
908
|
-
},
|
|
909
|
-
"preview": {
|
|
910
|
-
"$ref": "#/definitions/Preview",
|
|
911
|
-
"description": "Changes the way items are previewed in the CMS.",
|
|
912
|
-
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
913
|
-
},
|
|
914
|
-
"schema_key": {
|
|
915
|
-
"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.",
|
|
916
|
-
"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.",
|
|
917
|
-
"type": "string"
|
|
918
|
-
},
|
|
919
|
-
"schemas": {
|
|
920
|
-
"additionalProperties": {
|
|
921
|
-
"$ref": "#/definitions/Schema"
|
|
922
|
-
},
|
|
923
|
-
"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.",
|
|
924
|
-
"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.",
|
|
925
|
-
"type": "object"
|
|
926
|
-
},
|
|
927
|
-
"singular_key": {
|
|
928
|
-
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
929
|
-
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
930
|
-
"type": "string"
|
|
931
|
-
},
|
|
932
|
-
"singular_name": {
|
|
933
|
-
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
934
|
-
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
935
|
-
"type": "string"
|
|
936
|
-
},
|
|
937
|
-
"sort": {
|
|
938
|
-
"$ref": "#/definitions/Sort",
|
|
939
|
-
"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.",
|
|
940
|
-
"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."
|
|
941
|
-
},
|
|
942
|
-
"sort_options": {
|
|
943
|
-
"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.",
|
|
944
|
-
"items": {
|
|
945
|
-
"$ref": "#/definitions/SortOption"
|
|
946
|
-
},
|
|
947
|
-
"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.",
|
|
948
|
-
"type": "array"
|
|
949
|
-
},
|
|
950
|
-
"url": {
|
|
951
|
-
"description": "Used to build the url field for items in the collection. Similar to permalink in many SSGs. Defaults to ''",
|
|
952
|
-
"markdownDescription": "Used to build the url field for items in the collection. Similar to permalink in many SSGs.\nDefaults to ''",
|
|
953
|
-
"type": "string"
|
|
753
|
+
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
954
754
|
}
|
|
955
755
|
},
|
|
956
756
|
"type": "object"
|
|
@@ -1164,8 +964,8 @@
|
|
|
1164
964
|
"type": "string"
|
|
1165
965
|
},
|
|
1166
966
|
"publish_to": {
|
|
1167
|
-
"description": "Defines a target collection when publishing. When a file is published
|
|
1168
|
-
"markdownDescription": "Defines a target collection when publishing. When a file is published
|
|
967
|
+
"description": "Defines a target collection when publishing. When a file is published, the target collection's create definition is used instead.",
|
|
968
|
+
"markdownDescription": "Defines a target collection when publishing. When a file is published, the target collection's\ncreate definition is used instead.",
|
|
1169
969
|
"type": "string"
|
|
1170
970
|
}
|
|
1171
971
|
},
|
|
@@ -1178,7 +978,7 @@
|
|
|
1178
978
|
"additionalProperties": false,
|
|
1179
979
|
"properties": {
|
|
1180
980
|
"parser": {
|
|
1181
|
-
"description": "Overrides
|
|
981
|
+
"description": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
1182
982
|
"enum": [
|
|
1183
983
|
"csv",
|
|
1184
984
|
"front-matter",
|
|
@@ -1187,7 +987,7 @@
|
|
|
1187
987
|
"toml",
|
|
1188
988
|
"yaml"
|
|
1189
989
|
],
|
|
1190
|
-
"markdownDescription": "Overrides
|
|
990
|
+
"markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
1191
991
|
"type": "string"
|
|
1192
992
|
},
|
|
1193
993
|
"path": {
|
|
@@ -1301,265 +1101,37 @@
|
|
|
1301
1101
|
},
|
|
1302
1102
|
"type": "object"
|
|
1303
1103
|
},
|
|
1304
|
-
"
|
|
1104
|
+
"Documentation": {
|
|
1305
1105
|
"additionalProperties": false,
|
|
1306
1106
|
"properties": {
|
|
1307
|
-
"
|
|
1308
|
-
"
|
|
1309
|
-
"description": "
|
|
1310
|
-
"markdownDescription": "
|
|
1311
|
-
"type": "object"
|
|
1107
|
+
"icon": {
|
|
1108
|
+
"$ref": "#/definitions/Icon",
|
|
1109
|
+
"description": "The icon displayed next to the link.",
|
|
1110
|
+
"markdownDescription": "The icon displayed next to the link."
|
|
1312
1111
|
},
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
1318
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
1319
|
-
"type": "object"
|
|
1112
|
+
"text": {
|
|
1113
|
+
"description": "The visible text used in the link.",
|
|
1114
|
+
"markdownDescription": "The visible text used in the link.",
|
|
1115
|
+
"type": "string"
|
|
1320
1116
|
},
|
|
1321
|
-
"
|
|
1322
|
-
"
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
"
|
|
1339
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1340
|
-
"type": "object"
|
|
1341
|
-
},
|
|
1342
|
-
"_options": {
|
|
1343
|
-
"additionalProperties": {
|
|
1344
|
-
"additionalProperties": {},
|
|
1345
|
-
"type": "object"
|
|
1346
|
-
},
|
|
1347
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1348
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1349
|
-
"type": "object"
|
|
1350
|
-
},
|
|
1351
|
-
"_select_data": {
|
|
1352
|
-
"additionalProperties": {
|
|
1353
|
-
"$ref": "#/definitions/SelectValues"
|
|
1354
|
-
},
|
|
1355
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
1356
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
1357
|
-
"type": "object"
|
|
1358
|
-
},
|
|
1359
|
-
"_snippets": {
|
|
1360
|
-
"additionalProperties": {
|
|
1361
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1362
|
-
},
|
|
1363
|
-
"description": "Configuration for custom snippets.",
|
|
1364
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
1365
|
-
"type": "object"
|
|
1366
|
-
},
|
|
1367
|
-
"_snippets_definitions": {
|
|
1368
|
-
"additionalProperties": {
|
|
1369
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1370
|
-
},
|
|
1371
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1372
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1373
|
-
"type": "object"
|
|
1374
|
-
},
|
|
1375
|
-
"_snippets_imports": {
|
|
1376
|
-
"$ref": "#/definitions/SnippetsImports",
|
|
1377
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
1378
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
1379
|
-
},
|
|
1380
|
-
"_snippets_templates": {
|
|
1381
|
-
"additionalProperties": {
|
|
1382
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1383
|
-
},
|
|
1384
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1385
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1386
|
-
"type": "object"
|
|
1387
|
-
},
|
|
1388
|
-
"_structures": {
|
|
1389
|
-
"additionalProperties": {
|
|
1390
|
-
"$ref": "#/definitions/Structure"
|
|
1391
|
-
},
|
|
1392
|
-
"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.",
|
|
1393
|
-
"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.",
|
|
1394
|
-
"type": "object"
|
|
1395
|
-
},
|
|
1396
|
-
"base_url": {
|
|
1397
|
-
"description": "The subpath where your output files are hosted.",
|
|
1398
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
1399
|
-
"type": "string"
|
|
1400
|
-
},
|
|
1401
|
-
"collection_groups": {
|
|
1402
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
1403
|
-
"items": {
|
|
1404
|
-
"$ref": "#/definitions/CollectionGroup"
|
|
1405
|
-
},
|
|
1406
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
1407
|
-
"type": "array"
|
|
1408
|
-
},
|
|
1409
|
-
"collections_config": {
|
|
1410
|
-
"additionalProperties": {
|
|
1411
|
-
"$ref": "#/definitions/CollectionConfig"
|
|
1412
|
-
},
|
|
1413
|
-
"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.",
|
|
1414
|
-
"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.",
|
|
1415
|
-
"type": "object"
|
|
1416
|
-
},
|
|
1417
|
-
"commit_templates": {
|
|
1418
|
-
"items": {
|
|
1419
|
-
"$ref": "#/definitions/CommitTemplate"
|
|
1420
|
-
},
|
|
1421
|
-
"type": "array"
|
|
1422
|
-
},
|
|
1423
|
-
"data_config": {
|
|
1424
|
-
"additionalProperties": {
|
|
1425
|
-
"$ref": "#/definitions/DataConfigEntry"
|
|
1426
|
-
},
|
|
1427
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1428
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1429
|
-
"type": "object"
|
|
1430
|
-
},
|
|
1431
|
-
"editor": {
|
|
1432
|
-
"$ref": "#/definitions/Editor",
|
|
1433
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
1434
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
1435
|
-
},
|
|
1436
|
-
"file_config": {
|
|
1437
|
-
"additionalProperties": {
|
|
1438
|
-
"$ref": "#/definitions/FileConfigEntry"
|
|
1439
|
-
},
|
|
1440
|
-
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1441
|
-
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1442
|
-
"type": "object"
|
|
1443
|
-
},
|
|
1444
|
-
"generator": {
|
|
1445
|
-
"additionalProperties": false,
|
|
1446
|
-
"description": "Contains settings for various Markdown engines.",
|
|
1447
|
-
"markdownDescription": "Contains settings for various Markdown engines.",
|
|
1448
|
-
"properties": {
|
|
1449
|
-
"metadata": {
|
|
1450
|
-
"additionalProperties": false,
|
|
1451
|
-
"description": "Settings for various Markdown engines.",
|
|
1452
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
1453
|
-
"properties": {
|
|
1454
|
-
"commonmark": {
|
|
1455
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
1456
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
1457
|
-
"type": "object"
|
|
1458
|
-
},
|
|
1459
|
-
"commonmarkghpages": {
|
|
1460
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
1461
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
1462
|
-
"type": "object"
|
|
1463
|
-
},
|
|
1464
|
-
"goldmark": {
|
|
1465
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
1466
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
1467
|
-
"type": "object"
|
|
1468
|
-
},
|
|
1469
|
-
"kramdown": {
|
|
1470
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
1471
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
1472
|
-
"type": "object"
|
|
1473
|
-
},
|
|
1474
|
-
"markdown": {
|
|
1475
|
-
"description": "The Markdown engine used on your site.",
|
|
1476
|
-
"enum": [
|
|
1477
|
-
"kramdown",
|
|
1478
|
-
"commonmark",
|
|
1479
|
-
"commonmarkghpages",
|
|
1480
|
-
"goldmark",
|
|
1481
|
-
"markdown-it"
|
|
1482
|
-
],
|
|
1483
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
1484
|
-
"type": "string"
|
|
1485
|
-
},
|
|
1486
|
-
"markdown-it": {
|
|
1487
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
1488
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
1489
|
-
"type": "object"
|
|
1490
|
-
}
|
|
1491
|
-
},
|
|
1492
|
-
"required": [
|
|
1493
|
-
"markdown"
|
|
1494
|
-
],
|
|
1495
|
-
"type": "object"
|
|
1496
|
-
}
|
|
1497
|
-
},
|
|
1498
|
-
"type": "object"
|
|
1499
|
-
},
|
|
1500
|
-
"output": {
|
|
1501
|
-
"description": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy. Defaults to the root folder.",
|
|
1502
|
-
"markdownDescription": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy.\nDefaults to the root folder.",
|
|
1503
|
-
"type": "string"
|
|
1504
|
-
},
|
|
1505
|
-
"paths": {
|
|
1506
|
-
"$ref": "#/definitions/Paths",
|
|
1507
|
-
"description": "Global paths to common folders.",
|
|
1508
|
-
"markdownDescription": "Global paths to common folders."
|
|
1509
|
-
},
|
|
1510
|
-
"source": {
|
|
1511
|
-
"description": "Base path to your site source files, relative to the root folder.",
|
|
1512
|
-
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
1513
|
-
"type": "string"
|
|
1514
|
-
},
|
|
1515
|
-
"source_editor": {
|
|
1516
|
-
"$ref": "#/definitions/SourceEditor",
|
|
1517
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
1518
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
1519
|
-
},
|
|
1520
|
-
"ssg": {
|
|
1521
|
-
"$ref": "#/definitions/SsgKey"
|
|
1522
|
-
},
|
|
1523
|
-
"timezone": {
|
|
1524
|
-
"$ref": "#/definitions/Timezone",
|
|
1525
|
-
"default": "Etc/UTC",
|
|
1526
|
-
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
1527
|
-
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
1528
|
-
}
|
|
1529
|
-
},
|
|
1530
|
-
"type": "object"
|
|
1531
|
-
},
|
|
1532
|
-
"Documentation": {
|
|
1533
|
-
"additionalProperties": false,
|
|
1534
|
-
"properties": {
|
|
1535
|
-
"icon": {
|
|
1536
|
-
"$ref": "#/definitions/Icon",
|
|
1537
|
-
"description": "The icon displayed next to the link.",
|
|
1538
|
-
"markdownDescription": "The icon displayed next to the link."
|
|
1539
|
-
},
|
|
1540
|
-
"text": {
|
|
1541
|
-
"description": "The visible text used in the link.",
|
|
1542
|
-
"markdownDescription": "The visible text used in the link.",
|
|
1543
|
-
"type": "string"
|
|
1544
|
-
},
|
|
1545
|
-
"url": {
|
|
1546
|
-
"description": "The \"href\" value of the link.",
|
|
1547
|
-
"markdownDescription": "The \"href\" value of the link.",
|
|
1548
|
-
"type": "string"
|
|
1549
|
-
}
|
|
1550
|
-
},
|
|
1551
|
-
"required": [
|
|
1552
|
-
"url"
|
|
1553
|
-
],
|
|
1554
|
-
"type": "object"
|
|
1555
|
-
},
|
|
1556
|
-
"Editables": {
|
|
1557
|
-
"additionalProperties": false,
|
|
1558
|
-
"properties": {
|
|
1559
|
-
"block": {
|
|
1560
|
-
"$ref": "#/definitions/BlockEditable",
|
|
1561
|
-
"description": "Contains input options for block Editable Regions.",
|
|
1562
|
-
"markdownDescription": "Contains input options for block Editable Regions."
|
|
1117
|
+
"url": {
|
|
1118
|
+
"description": "The \"href\" value of the link.",
|
|
1119
|
+
"markdownDescription": "The \"href\" value of the link.",
|
|
1120
|
+
"type": "string"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
"required": [
|
|
1124
|
+
"url"
|
|
1125
|
+
],
|
|
1126
|
+
"type": "object"
|
|
1127
|
+
},
|
|
1128
|
+
"Editables": {
|
|
1129
|
+
"additionalProperties": false,
|
|
1130
|
+
"properties": {
|
|
1131
|
+
"block": {
|
|
1132
|
+
"$ref": "#/definitions/BlockEditable",
|
|
1133
|
+
"description": "Contains input options for block Editable Regions.",
|
|
1134
|
+
"markdownDescription": "Contains input options for block Editable Regions."
|
|
1563
1135
|
},
|
|
1564
1136
|
"content": {
|
|
1565
1137
|
"$ref": "#/definitions/BlockEditable",
|
|
@@ -1640,16 +1212,18 @@
|
|
|
1640
1212
|
"properties": {
|
|
1641
1213
|
"_array_structures": {
|
|
1642
1214
|
"additionalProperties": {},
|
|
1643
|
-
"
|
|
1644
|
-
"
|
|
1215
|
+
"deprecated": "Use _structures instead.",
|
|
1216
|
+
"description": "Now known as _structures.",
|
|
1217
|
+
"markdownDescription": "Now known as _structures.",
|
|
1645
1218
|
"type": "object"
|
|
1646
1219
|
},
|
|
1647
1220
|
"_comments": {
|
|
1648
1221
|
"additionalProperties": {
|
|
1649
1222
|
"type": "string"
|
|
1650
1223
|
},
|
|
1651
|
-
"
|
|
1652
|
-
"
|
|
1224
|
+
"deprecated": "Use _inputs instead.",
|
|
1225
|
+
"description": "Now part of _inputs.*.comment.",
|
|
1226
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1653
1227
|
"type": "object"
|
|
1654
1228
|
},
|
|
1655
1229
|
"_editables": {
|
|
@@ -1678,8 +1252,9 @@
|
|
|
1678
1252
|
"additionalProperties": {},
|
|
1679
1253
|
"type": "object"
|
|
1680
1254
|
},
|
|
1681
|
-
"
|
|
1682
|
-
"
|
|
1255
|
+
"deprecated": "Use _inputs instead.",
|
|
1256
|
+
"description": "Now part of _inputs.*.options.",
|
|
1257
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
1683
1258
|
"type": "object"
|
|
1684
1259
|
},
|
|
1685
1260
|
"_select_data": {
|
|
@@ -1700,14 +1275,14 @@
|
|
|
1700
1275
|
},
|
|
1701
1276
|
"glob": {
|
|
1702
1277
|
"anyOf": [
|
|
1703
|
-
{
|
|
1704
|
-
"type": "string"
|
|
1705
|
-
},
|
|
1706
1278
|
{
|
|
1707
1279
|
"items": {
|
|
1708
1280
|
"type": "string"
|
|
1709
1281
|
},
|
|
1710
1282
|
"type": "array"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"type": "string"
|
|
1711
1286
|
}
|
|
1712
1287
|
],
|
|
1713
1288
|
"description": "The glob pattern(s) targeting a path to one or more files.",
|
|
@@ -4017,12 +3592,6 @@
|
|
|
4017
3592
|
"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.",
|
|
4018
3593
|
"type": "array"
|
|
4019
3594
|
},
|
|
4020
|
-
"correct_orientation": {
|
|
4021
|
-
"default": true,
|
|
4022
|
-
"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.",
|
|
4023
|
-
"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.",
|
|
4024
|
-
"type": "boolean"
|
|
4025
|
-
},
|
|
4026
3595
|
"expandable": {
|
|
4027
3596
|
"default": false,
|
|
4028
3597
|
"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.",
|
|
@@ -4044,7 +3613,8 @@
|
|
|
4044
3613
|
"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.",
|
|
4045
3614
|
"enum": [
|
|
4046
3615
|
"image/jpeg",
|
|
4047
|
-
"image/png"
|
|
3616
|
+
"image/png",
|
|
3617
|
+
"image/webp"
|
|
4048
3618
|
],
|
|
4049
3619
|
"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.",
|
|
4050
3620
|
"type": "string"
|
|
@@ -4212,12 +3782,6 @@
|
|
|
4212
3782
|
"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.",
|
|
4213
3783
|
"type": "array"
|
|
4214
3784
|
},
|
|
4215
|
-
"correct_orientation": {
|
|
4216
|
-
"default": true,
|
|
4217
|
-
"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.",
|
|
4218
|
-
"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.",
|
|
4219
|
-
"type": "boolean"
|
|
4220
|
-
},
|
|
4221
3785
|
"empty_type": {
|
|
4222
3786
|
"$ref": "#/definitions/EmptyTypeText",
|
|
4223
3787
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
@@ -4244,7 +3808,8 @@
|
|
|
4244
3808
|
"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.",
|
|
4245
3809
|
"enum": [
|
|
4246
3810
|
"image/jpeg",
|
|
4247
|
-
"image/png"
|
|
3811
|
+
"image/png",
|
|
3812
|
+
"image/webp"
|
|
4248
3813
|
],
|
|
4249
3814
|
"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.",
|
|
4250
3815
|
"type": "string"
|
|
@@ -4415,60 +3980,218 @@
|
|
|
4415
3980
|
},
|
|
4416
3981
|
"type": "object"
|
|
4417
3982
|
},
|
|
4418
|
-
"
|
|
4419
|
-
"
|
|
4420
|
-
|
|
4421
|
-
"
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
"
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
"
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
"
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
"
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
"
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
"
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
"
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
"
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
"
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
"
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
"
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
3983
|
+
"MarkdownAttributeElementOptions": {
|
|
3984
|
+
"additionalProperties": false,
|
|
3985
|
+
"properties": {
|
|
3986
|
+
"block": {
|
|
3987
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
3988
|
+
},
|
|
3989
|
+
"blockquote": {
|
|
3990
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
3991
|
+
},
|
|
3992
|
+
"img": {
|
|
3993
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
3994
|
+
},
|
|
3995
|
+
"inline": {
|
|
3996
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
3997
|
+
},
|
|
3998
|
+
"li": {
|
|
3999
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4000
|
+
},
|
|
4001
|
+
"ol": {
|
|
4002
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4003
|
+
},
|
|
4004
|
+
"table": {
|
|
4005
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4006
|
+
},
|
|
4007
|
+
"td": {
|
|
4008
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4009
|
+
},
|
|
4010
|
+
"tr": {
|
|
4011
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4012
|
+
},
|
|
4013
|
+
"ul": {
|
|
4014
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4015
|
+
}
|
|
4016
|
+
},
|
|
4017
|
+
"type": "object"
|
|
4018
|
+
},
|
|
4019
|
+
"MarkdownSettings": {
|
|
4020
|
+
"additionalProperties": false,
|
|
4021
|
+
"properties": {
|
|
4022
|
+
"engine": {
|
|
4023
|
+
"enum": [
|
|
4024
|
+
"commonmark",
|
|
4025
|
+
"kramdown"
|
|
4026
|
+
],
|
|
4027
|
+
"type": "string"
|
|
4028
|
+
},
|
|
4029
|
+
"options": {
|
|
4030
|
+
"additionalProperties": false,
|
|
4031
|
+
"properties": {
|
|
4032
|
+
"attribute_elements": {
|
|
4033
|
+
"$ref": "#/definitions/MarkdownAttributeElementOptions",
|
|
4034
|
+
"description": "Define positioning behaviour of Markdown attributes for different elements.",
|
|
4035
|
+
"markdownDescription": "Define positioning behaviour of Markdown attributes for different elements."
|
|
4036
|
+
},
|
|
4037
|
+
"attributes": {
|
|
4038
|
+
"description": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4039
|
+
"markdownDescription": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4040
|
+
"type": "boolean"
|
|
4041
|
+
},
|
|
4042
|
+
"breaks": {
|
|
4043
|
+
"description": "Convert '\\n' in paragraphs into <br>.",
|
|
4044
|
+
"markdownDescription": "Convert '\\n' in paragraphs into <br>.",
|
|
4045
|
+
"type": "boolean"
|
|
4046
|
+
},
|
|
4047
|
+
"code_block_fences": {
|
|
4048
|
+
"description": "Determines which style of code block fences to use.",
|
|
4049
|
+
"enum": [
|
|
4050
|
+
"```",
|
|
4051
|
+
"~~~"
|
|
4052
|
+
],
|
|
4053
|
+
"markdownDescription": "Determines which style of code block fences to use.",
|
|
4054
|
+
"type": "string"
|
|
4055
|
+
},
|
|
4056
|
+
"escape_snippets_in_code_blocks": {
|
|
4057
|
+
"description": "Render snippets as plain text within code blocks.",
|
|
4058
|
+
"markdownDescription": "Render snippets as plain text within code blocks.",
|
|
4059
|
+
"type": "boolean"
|
|
4060
|
+
},
|
|
4061
|
+
"gfm": {
|
|
4062
|
+
"description": "Enable GFM mode.",
|
|
4063
|
+
"markdownDescription": "Enable GFM mode.",
|
|
4064
|
+
"type": "boolean"
|
|
4065
|
+
},
|
|
4066
|
+
"heading_ids": {
|
|
4067
|
+
"description": "Generate IDs for headings",
|
|
4068
|
+
"markdownDescription": "Generate IDs for headings",
|
|
4069
|
+
"type": "boolean"
|
|
4070
|
+
},
|
|
4071
|
+
"html": {
|
|
4072
|
+
"description": "Output HTML tags from source.",
|
|
4073
|
+
"markdownDescription": "Output HTML tags from source.",
|
|
4074
|
+
"type": "boolean"
|
|
4075
|
+
},
|
|
4076
|
+
"linkify": {
|
|
4077
|
+
"description": "Autoconvert URL-like text to links.",
|
|
4078
|
+
"markdownDescription": "Autoconvert URL-like text to links.",
|
|
4079
|
+
"type": "boolean"
|
|
4080
|
+
},
|
|
4081
|
+
"quotes": {
|
|
4082
|
+
"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).",
|
|
4083
|
+
"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).",
|
|
4084
|
+
"type": "string"
|
|
4085
|
+
},
|
|
4086
|
+
"sentence_per_line": {
|
|
4087
|
+
"description": "Add linebreaks between sentences in Markdown.",
|
|
4088
|
+
"markdownDescription": "Add linebreaks between sentences in Markdown.",
|
|
4089
|
+
"type": "boolean"
|
|
4090
|
+
},
|
|
4091
|
+
"spaced_lists": {
|
|
4092
|
+
"description": "Output lists with an extra space in Markdown.",
|
|
4093
|
+
"markdownDescription": "Output lists with an extra space in Markdown.",
|
|
4094
|
+
"type": "boolean"
|
|
4095
|
+
},
|
|
4096
|
+
"strikethrough": {
|
|
4097
|
+
"description": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4098
|
+
"markdownDescription": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4099
|
+
"type": "boolean"
|
|
4100
|
+
},
|
|
4101
|
+
"subscript": {
|
|
4102
|
+
"description": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4103
|
+
"markdownDescription": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4104
|
+
"type": "boolean"
|
|
4105
|
+
},
|
|
4106
|
+
"superscript": {
|
|
4107
|
+
"description": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4108
|
+
"markdownDescription": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4109
|
+
"type": "boolean"
|
|
4110
|
+
},
|
|
4111
|
+
"table": {
|
|
4112
|
+
"description": "Output tables in Markdown format.",
|
|
4113
|
+
"markdownDescription": "Output tables in Markdown format.",
|
|
4114
|
+
"type": "boolean"
|
|
4115
|
+
},
|
|
4116
|
+
"treat_indentation_as_code": {
|
|
4117
|
+
"description": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4118
|
+
"markdownDescription": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4119
|
+
"type": "boolean"
|
|
4120
|
+
},
|
|
4121
|
+
"typographer": {
|
|
4122
|
+
"description": "Enable some language-neutral replacement + quotes beautification.",
|
|
4123
|
+
"markdownDescription": "Enable some language-neutral replacement + quotes beautification.",
|
|
4124
|
+
"type": "boolean"
|
|
4125
|
+
},
|
|
4126
|
+
"xhtml": {
|
|
4127
|
+
"description": "Use '/' to close single tags (<br />).",
|
|
4128
|
+
"markdownDescription": "Use '/' to close single tags (<br />).",
|
|
4129
|
+
"type": "boolean"
|
|
4130
|
+
}
|
|
4131
|
+
},
|
|
4132
|
+
"type": "object"
|
|
4133
|
+
}
|
|
4134
|
+
},
|
|
4135
|
+
"required": [
|
|
4136
|
+
"engine",
|
|
4137
|
+
"options"
|
|
4138
|
+
],
|
|
4139
|
+
"type": "object"
|
|
4140
|
+
},
|
|
4141
|
+
"MimeType": {
|
|
4142
|
+
"enum": [
|
|
4143
|
+
"x-world/x-3dmf",
|
|
4144
|
+
"application/x-authorware-bin",
|
|
4145
|
+
"application/x-authorware-map",
|
|
4146
|
+
"application/x-authorware-seg",
|
|
4147
|
+
"text/vnd.abc",
|
|
4148
|
+
"video/animaflex",
|
|
4149
|
+
"application/postscript",
|
|
4150
|
+
"audio/aiff",
|
|
4151
|
+
"audio/x-aiff",
|
|
4152
|
+
"application/x-aim",
|
|
4153
|
+
"text/x-audiosoft-intra",
|
|
4154
|
+
"application/x-navi-animation",
|
|
4155
|
+
"application/x-nokia-9000-communicator-add-on-software",
|
|
4156
|
+
"application/mime",
|
|
4157
|
+
"application/arj",
|
|
4158
|
+
"image/x-jg",
|
|
4159
|
+
"video/x-ms-asf",
|
|
4160
|
+
"text/x-asm",
|
|
4161
|
+
"text/asp",
|
|
4162
|
+
"application/x-mplayer2",
|
|
4163
|
+
"video/x-ms-asf-plugin",
|
|
4164
|
+
"audio/basic",
|
|
4165
|
+
"audio/x-au",
|
|
4166
|
+
"application/x-troff-msvideo",
|
|
4167
|
+
"video/avi",
|
|
4168
|
+
"video/msvideo",
|
|
4169
|
+
"video/x-msvideo",
|
|
4170
|
+
"video/avs-video",
|
|
4171
|
+
"application/x-bcpio",
|
|
4172
|
+
"application/mac-binary",
|
|
4173
|
+
"application/macbinary",
|
|
4174
|
+
"application/x-binary",
|
|
4175
|
+
"application/x-macbinary",
|
|
4176
|
+
"image/bmp",
|
|
4177
|
+
"image/x-windows-bmp",
|
|
4178
|
+
"application/book",
|
|
4179
|
+
"application/x-bsh",
|
|
4180
|
+
"application/x-bzip",
|
|
4181
|
+
"application/x-bzip2",
|
|
4182
|
+
"text/plain",
|
|
4183
|
+
"text/x-c",
|
|
4184
|
+
"application/vnd.ms-pki.seccat",
|
|
4185
|
+
"application/clariscad",
|
|
4186
|
+
"application/x-cocoa",
|
|
4187
|
+
"application/cdf",
|
|
4188
|
+
"application/x-cdf",
|
|
4189
|
+
"application/x-netcdf",
|
|
4190
|
+
"application/pkix-cert",
|
|
4191
|
+
"application/x-x509-ca-cert",
|
|
4192
|
+
"application/x-chat",
|
|
4193
|
+
"application/java",
|
|
4194
|
+
"application/java-byte-code",
|
|
4472
4195
|
"application/x-java-class",
|
|
4473
4196
|
"application/x-cpio",
|
|
4474
4197
|
"application/mac-compactpro",
|
|
@@ -5390,158 +5113,22 @@
|
|
|
5390
5113
|
"additionalProperties": false,
|
|
5391
5114
|
"properties": {
|
|
5392
5115
|
"icon": {
|
|
5393
|
-
"
|
|
5394
|
-
{
|
|
5395
|
-
"items": {
|
|
5396
|
-
"anyOf": [
|
|
5397
|
-
{
|
|
5398
|
-
"additionalProperties": false,
|
|
5399
|
-
"properties": {
|
|
5400
|
-
"key": {
|
|
5401
|
-
"description": "The key used to access the value used for the preview.",
|
|
5402
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5403
|
-
"type": "string"
|
|
5404
|
-
}
|
|
5405
|
-
},
|
|
5406
|
-
"required": [
|
|
5407
|
-
"key"
|
|
5408
|
-
],
|
|
5409
|
-
"type": "object"
|
|
5410
|
-
},
|
|
5411
|
-
{
|
|
5412
|
-
"type": "string"
|
|
5413
|
-
},
|
|
5414
|
-
{
|
|
5415
|
-
"type": "boolean"
|
|
5416
|
-
}
|
|
5417
|
-
]
|
|
5418
|
-
},
|
|
5419
|
-
"type": "array"
|
|
5420
|
-
},
|
|
5421
|
-
{
|
|
5422
|
-
"type": "string"
|
|
5423
|
-
},
|
|
5424
|
-
{
|
|
5425
|
-
"type": "boolean"
|
|
5426
|
-
}
|
|
5427
|
-
],
|
|
5116
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5428
5117
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5429
5118
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5430
5119
|
},
|
|
5431
5120
|
"image": {
|
|
5432
|
-
"
|
|
5433
|
-
{
|
|
5434
|
-
"items": {
|
|
5435
|
-
"anyOf": [
|
|
5436
|
-
{
|
|
5437
|
-
"additionalProperties": false,
|
|
5438
|
-
"properties": {
|
|
5439
|
-
"key": {
|
|
5440
|
-
"description": "The key used to access the value used for the preview.",
|
|
5441
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5442
|
-
"type": "string"
|
|
5443
|
-
}
|
|
5444
|
-
},
|
|
5445
|
-
"required": [
|
|
5446
|
-
"key"
|
|
5447
|
-
],
|
|
5448
|
-
"type": "object"
|
|
5449
|
-
},
|
|
5450
|
-
{
|
|
5451
|
-
"type": "string"
|
|
5452
|
-
},
|
|
5453
|
-
{
|
|
5454
|
-
"type": "boolean"
|
|
5455
|
-
}
|
|
5456
|
-
]
|
|
5457
|
-
},
|
|
5458
|
-
"type": "array"
|
|
5459
|
-
},
|
|
5460
|
-
{
|
|
5461
|
-
"type": "string"
|
|
5462
|
-
},
|
|
5463
|
-
{
|
|
5464
|
-
"type": "boolean"
|
|
5465
|
-
}
|
|
5466
|
-
],
|
|
5121
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5467
5122
|
"description": "Controls the image shown per item.",
|
|
5468
5123
|
"markdownDescription": "Controls the image shown per item."
|
|
5469
5124
|
},
|
|
5470
5125
|
"subtext": {
|
|
5471
|
-
"
|
|
5472
|
-
{
|
|
5473
|
-
"items": {
|
|
5474
|
-
"anyOf": [
|
|
5475
|
-
{
|
|
5476
|
-
"additionalProperties": false,
|
|
5477
|
-
"properties": {
|
|
5478
|
-
"key": {
|
|
5479
|
-
"description": "The key used to access the value used for the preview.",
|
|
5480
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5481
|
-
"type": "string"
|
|
5482
|
-
}
|
|
5483
|
-
},
|
|
5484
|
-
"required": [
|
|
5485
|
-
"key"
|
|
5486
|
-
],
|
|
5487
|
-
"type": "object"
|
|
5488
|
-
},
|
|
5489
|
-
{
|
|
5490
|
-
"type": "string"
|
|
5491
|
-
},
|
|
5492
|
-
{
|
|
5493
|
-
"type": "boolean"
|
|
5494
|
-
}
|
|
5495
|
-
]
|
|
5496
|
-
},
|
|
5497
|
-
"type": "array"
|
|
5498
|
-
},
|
|
5499
|
-
{
|
|
5500
|
-
"type": "string"
|
|
5501
|
-
},
|
|
5502
|
-
{
|
|
5503
|
-
"type": "boolean"
|
|
5504
|
-
}
|
|
5505
|
-
],
|
|
5126
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5506
5127
|
"description": "Controls the supporting text shown per item.",
|
|
5507
5128
|
"markdownDescription": "Controls the supporting text shown per item."
|
|
5508
5129
|
},
|
|
5509
5130
|
"text": {
|
|
5510
|
-
"
|
|
5511
|
-
{
|
|
5512
|
-
"items": {
|
|
5513
|
-
"anyOf": [
|
|
5514
|
-
{
|
|
5515
|
-
"additionalProperties": false,
|
|
5516
|
-
"properties": {
|
|
5517
|
-
"key": {
|
|
5518
|
-
"description": "The key used to access the value used for the preview.",
|
|
5519
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5520
|
-
"type": "string"
|
|
5521
|
-
}
|
|
5522
|
-
},
|
|
5523
|
-
"required": [
|
|
5524
|
-
"key"
|
|
5525
|
-
],
|
|
5526
|
-
"type": "object"
|
|
5527
|
-
},
|
|
5528
|
-
{
|
|
5529
|
-
"type": "string"
|
|
5530
|
-
},
|
|
5531
|
-
{
|
|
5532
|
-
"type": "boolean"
|
|
5533
|
-
}
|
|
5534
|
-
]
|
|
5535
|
-
},
|
|
5536
|
-
"type": "array"
|
|
5537
|
-
},
|
|
5538
|
-
{
|
|
5539
|
-
"type": "string"
|
|
5540
|
-
},
|
|
5541
|
-
{
|
|
5542
|
-
"type": "boolean"
|
|
5543
|
-
}
|
|
5544
|
-
],
|
|
5131
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5545
5132
|
"description": "Controls the main text shown per item.",
|
|
5546
5133
|
"markdownDescription": "Controls the main text shown per item."
|
|
5547
5134
|
}
|
|
@@ -5552,7 +5139,6 @@
|
|
|
5552
5139
|
"additionalProperties": false,
|
|
5553
5140
|
"properties": {
|
|
5554
5141
|
"collections": {
|
|
5555
|
-
"default": "",
|
|
5556
5142
|
"description": "Parent folder of all collections.",
|
|
5557
5143
|
"markdownDescription": "Parent folder of all collections.",
|
|
5558
5144
|
"type": "string"
|
|
@@ -5622,41 +5208,7 @@
|
|
|
5622
5208
|
"markdownDescription": "Details for large image/icon preview per item."
|
|
5623
5209
|
},
|
|
5624
5210
|
"icon": {
|
|
5625
|
-
"
|
|
5626
|
-
{
|
|
5627
|
-
"items": {
|
|
5628
|
-
"anyOf": [
|
|
5629
|
-
{
|
|
5630
|
-
"additionalProperties": false,
|
|
5631
|
-
"properties": {
|
|
5632
|
-
"key": {
|
|
5633
|
-
"description": "The key used to access the value used for the preview.",
|
|
5634
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5635
|
-
"type": "string"
|
|
5636
|
-
}
|
|
5637
|
-
},
|
|
5638
|
-
"required": [
|
|
5639
|
-
"key"
|
|
5640
|
-
],
|
|
5641
|
-
"type": "object"
|
|
5642
|
-
},
|
|
5643
|
-
{
|
|
5644
|
-
"type": "string"
|
|
5645
|
-
},
|
|
5646
|
-
{
|
|
5647
|
-
"type": "boolean"
|
|
5648
|
-
}
|
|
5649
|
-
]
|
|
5650
|
-
},
|
|
5651
|
-
"type": "array"
|
|
5652
|
-
},
|
|
5653
|
-
{
|
|
5654
|
-
"type": "string"
|
|
5655
|
-
},
|
|
5656
|
-
{
|
|
5657
|
-
"type": "boolean"
|
|
5658
|
-
}
|
|
5659
|
-
],
|
|
5211
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5660
5212
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5661
5213
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5662
5214
|
},
|
|
@@ -5666,41 +5218,7 @@
|
|
|
5666
5218
|
"type": "string"
|
|
5667
5219
|
},
|
|
5668
5220
|
"image": {
|
|
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
|
-
],
|
|
5221
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5704
5222
|
"description": "Controls the image shown per item.",
|
|
5705
5223
|
"markdownDescription": "Controls the image shown per item."
|
|
5706
5224
|
},
|
|
@@ -5713,86 +5231,44 @@
|
|
|
5713
5231
|
"type": "array"
|
|
5714
5232
|
},
|
|
5715
5233
|
"subtext": {
|
|
5716
|
-
"
|
|
5717
|
-
{
|
|
5718
|
-
"items": {
|
|
5719
|
-
"anyOf": [
|
|
5720
|
-
{
|
|
5721
|
-
"additionalProperties": false,
|
|
5722
|
-
"properties": {
|
|
5723
|
-
"key": {
|
|
5724
|
-
"description": "The key used to access the value used for the preview.",
|
|
5725
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5726
|
-
"type": "string"
|
|
5727
|
-
}
|
|
5728
|
-
},
|
|
5729
|
-
"required": [
|
|
5730
|
-
"key"
|
|
5731
|
-
],
|
|
5732
|
-
"type": "object"
|
|
5733
|
-
},
|
|
5734
|
-
{
|
|
5735
|
-
"type": "string"
|
|
5736
|
-
},
|
|
5737
|
-
{
|
|
5738
|
-
"type": "boolean"
|
|
5739
|
-
}
|
|
5740
|
-
]
|
|
5741
|
-
},
|
|
5742
|
-
"type": "array"
|
|
5743
|
-
},
|
|
5744
|
-
{
|
|
5745
|
-
"type": "string"
|
|
5746
|
-
},
|
|
5747
|
-
{
|
|
5748
|
-
"type": "boolean"
|
|
5749
|
-
}
|
|
5750
|
-
],
|
|
5234
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5751
5235
|
"description": "Controls the supporting text shown per item.",
|
|
5752
5236
|
"markdownDescription": "Controls the supporting text shown per item."
|
|
5753
5237
|
},
|
|
5754
5238
|
"text": {
|
|
5755
|
-
"
|
|
5756
|
-
{
|
|
5757
|
-
"items": {
|
|
5758
|
-
"anyOf": [
|
|
5759
|
-
{
|
|
5760
|
-
"additionalProperties": false,
|
|
5761
|
-
"properties": {
|
|
5762
|
-
"key": {
|
|
5763
|
-
"description": "The key used to access the value used for the preview.",
|
|
5764
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5765
|
-
"type": "string"
|
|
5766
|
-
}
|
|
5767
|
-
},
|
|
5768
|
-
"required": [
|
|
5769
|
-
"key"
|
|
5770
|
-
],
|
|
5771
|
-
"type": "object"
|
|
5772
|
-
},
|
|
5773
|
-
{
|
|
5774
|
-
"type": "string"
|
|
5775
|
-
},
|
|
5776
|
-
{
|
|
5777
|
-
"type": "boolean"
|
|
5778
|
-
}
|
|
5779
|
-
]
|
|
5780
|
-
},
|
|
5781
|
-
"type": "array"
|
|
5782
|
-
},
|
|
5783
|
-
{
|
|
5784
|
-
"type": "string"
|
|
5785
|
-
},
|
|
5786
|
-
{
|
|
5787
|
-
"type": "boolean"
|
|
5788
|
-
}
|
|
5789
|
-
],
|
|
5239
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5790
5240
|
"description": "Controls the main text shown per item.",
|
|
5791
5241
|
"markdownDescription": "Controls the main text shown per item."
|
|
5792
5242
|
}
|
|
5793
5243
|
},
|
|
5794
5244
|
"type": "object"
|
|
5795
5245
|
},
|
|
5246
|
+
"PreviewEntry": {
|
|
5247
|
+
"anyOf": [
|
|
5248
|
+
{
|
|
5249
|
+
"items": {
|
|
5250
|
+
"anyOf": [
|
|
5251
|
+
{
|
|
5252
|
+
"$ref": "#/definitions/PreviewKeyEntry"
|
|
5253
|
+
},
|
|
5254
|
+
{
|
|
5255
|
+
"type": "string"
|
|
5256
|
+
},
|
|
5257
|
+
{
|
|
5258
|
+
"type": "boolean"
|
|
5259
|
+
}
|
|
5260
|
+
]
|
|
5261
|
+
},
|
|
5262
|
+
"type": "array"
|
|
5263
|
+
},
|
|
5264
|
+
{
|
|
5265
|
+
"type": "string"
|
|
5266
|
+
},
|
|
5267
|
+
{
|
|
5268
|
+
"type": "boolean"
|
|
5269
|
+
}
|
|
5270
|
+
]
|
|
5271
|
+
},
|
|
5796
5272
|
"PreviewGallery": {
|
|
5797
5273
|
"additionalProperties": false,
|
|
5798
5274
|
"properties": {
|
|
@@ -5808,41 +5284,7 @@
|
|
|
5808
5284
|
"type": "string"
|
|
5809
5285
|
},
|
|
5810
5286
|
"icon": {
|
|
5811
|
-
"
|
|
5812
|
-
{
|
|
5813
|
-
"items": {
|
|
5814
|
-
"anyOf": [
|
|
5815
|
-
{
|
|
5816
|
-
"additionalProperties": false,
|
|
5817
|
-
"properties": {
|
|
5818
|
-
"key": {
|
|
5819
|
-
"description": "The key used to access the value used for the preview.",
|
|
5820
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5821
|
-
"type": "string"
|
|
5822
|
-
}
|
|
5823
|
-
},
|
|
5824
|
-
"required": [
|
|
5825
|
-
"key"
|
|
5826
|
-
],
|
|
5827
|
-
"type": "object"
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"type": "string"
|
|
5831
|
-
},
|
|
5832
|
-
{
|
|
5833
|
-
"type": "boolean"
|
|
5834
|
-
}
|
|
5835
|
-
]
|
|
5836
|
-
},
|
|
5837
|
-
"type": "array"
|
|
5838
|
-
},
|
|
5839
|
-
{
|
|
5840
|
-
"type": "string"
|
|
5841
|
-
},
|
|
5842
|
-
{
|
|
5843
|
-
"type": "boolean"
|
|
5844
|
-
}
|
|
5845
|
-
],
|
|
5287
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5846
5288
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5847
5289
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5848
5290
|
},
|
|
@@ -5852,125 +5294,37 @@
|
|
|
5852
5294
|
"type": "string"
|
|
5853
5295
|
},
|
|
5854
5296
|
"image": {
|
|
5855
|
-
"
|
|
5856
|
-
{
|
|
5857
|
-
"items": {
|
|
5858
|
-
"anyOf": [
|
|
5859
|
-
{
|
|
5860
|
-
"additionalProperties": false,
|
|
5861
|
-
"properties": {
|
|
5862
|
-
"key": {
|
|
5863
|
-
"description": "The key used to access the value used for the preview.",
|
|
5864
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5865
|
-
"type": "string"
|
|
5866
|
-
}
|
|
5867
|
-
},
|
|
5868
|
-
"required": [
|
|
5869
|
-
"key"
|
|
5870
|
-
],
|
|
5871
|
-
"type": "object"
|
|
5872
|
-
},
|
|
5873
|
-
{
|
|
5874
|
-
"type": "string"
|
|
5875
|
-
},
|
|
5876
|
-
{
|
|
5877
|
-
"type": "boolean"
|
|
5878
|
-
}
|
|
5879
|
-
]
|
|
5880
|
-
},
|
|
5881
|
-
"type": "array"
|
|
5882
|
-
},
|
|
5883
|
-
{
|
|
5884
|
-
"type": "string"
|
|
5885
|
-
},
|
|
5886
|
-
{
|
|
5887
|
-
"type": "boolean"
|
|
5888
|
-
}
|
|
5889
|
-
],
|
|
5297
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5890
5298
|
"description": "Controls the image shown per item.",
|
|
5891
5299
|
"markdownDescription": "Controls the image shown per item."
|
|
5892
5300
|
},
|
|
5893
5301
|
"text": {
|
|
5894
|
-
"
|
|
5895
|
-
{
|
|
5896
|
-
"items": {
|
|
5897
|
-
"anyOf": [
|
|
5898
|
-
{
|
|
5899
|
-
"additionalProperties": false,
|
|
5900
|
-
"properties": {
|
|
5901
|
-
"key": {
|
|
5902
|
-
"description": "The key used to access the value used for the preview.",
|
|
5903
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5904
|
-
"type": "string"
|
|
5905
|
-
}
|
|
5906
|
-
},
|
|
5907
|
-
"required": [
|
|
5908
|
-
"key"
|
|
5909
|
-
],
|
|
5910
|
-
"type": "object"
|
|
5911
|
-
},
|
|
5912
|
-
{
|
|
5913
|
-
"type": "string"
|
|
5914
|
-
},
|
|
5915
|
-
{
|
|
5916
|
-
"type": "boolean"
|
|
5917
|
-
}
|
|
5918
|
-
]
|
|
5919
|
-
},
|
|
5920
|
-
"type": "array"
|
|
5921
|
-
},
|
|
5922
|
-
{
|
|
5923
|
-
"type": "string"
|
|
5924
|
-
},
|
|
5925
|
-
{
|
|
5926
|
-
"type": "boolean"
|
|
5927
|
-
}
|
|
5928
|
-
],
|
|
5302
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5929
5303
|
"description": "Controls the main text shown per item.",
|
|
5930
5304
|
"markdownDescription": "Controls the main text shown per item."
|
|
5931
5305
|
}
|
|
5932
5306
|
},
|
|
5933
5307
|
"type": "object"
|
|
5934
5308
|
},
|
|
5309
|
+
"PreviewKeyEntry": {
|
|
5310
|
+
"additionalProperties": false,
|
|
5311
|
+
"properties": {
|
|
5312
|
+
"key": {
|
|
5313
|
+
"description": "The key used to access the value used for the preview.",
|
|
5314
|
+
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5315
|
+
"type": "string"
|
|
5316
|
+
}
|
|
5317
|
+
},
|
|
5318
|
+
"required": [
|
|
5319
|
+
"key"
|
|
5320
|
+
],
|
|
5321
|
+
"type": "object"
|
|
5322
|
+
},
|
|
5935
5323
|
"PreviewMetadata": {
|
|
5936
5324
|
"additionalProperties": false,
|
|
5937
5325
|
"properties": {
|
|
5938
5326
|
"icon": {
|
|
5939
|
-
"
|
|
5940
|
-
{
|
|
5941
|
-
"items": {
|
|
5942
|
-
"anyOf": [
|
|
5943
|
-
{
|
|
5944
|
-
"additionalProperties": false,
|
|
5945
|
-
"properties": {
|
|
5946
|
-
"key": {
|
|
5947
|
-
"description": "The key used to access the value used for the preview.",
|
|
5948
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5949
|
-
"type": "string"
|
|
5950
|
-
}
|
|
5951
|
-
},
|
|
5952
|
-
"required": [
|
|
5953
|
-
"key"
|
|
5954
|
-
],
|
|
5955
|
-
"type": "object"
|
|
5956
|
-
},
|
|
5957
|
-
{
|
|
5958
|
-
"type": "string"
|
|
5959
|
-
},
|
|
5960
|
-
{
|
|
5961
|
-
"type": "boolean"
|
|
5962
|
-
}
|
|
5963
|
-
]
|
|
5964
|
-
},
|
|
5965
|
-
"type": "array"
|
|
5966
|
-
},
|
|
5967
|
-
{
|
|
5968
|
-
"type": "string"
|
|
5969
|
-
},
|
|
5970
|
-
{
|
|
5971
|
-
"type": "boolean"
|
|
5972
|
-
}
|
|
5973
|
-
],
|
|
5327
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
5974
5328
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5975
5329
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5976
5330
|
},
|
|
@@ -5980,80 +5334,12 @@
|
|
|
5980
5334
|
"type": "string"
|
|
5981
5335
|
},
|
|
5982
5336
|
"image": {
|
|
5983
|
-
"
|
|
5984
|
-
{
|
|
5985
|
-
"items": {
|
|
5986
|
-
"anyOf": [
|
|
5987
|
-
{
|
|
5988
|
-
"additionalProperties": false,
|
|
5989
|
-
"properties": {
|
|
5990
|
-
"key": {
|
|
5991
|
-
"description": "The key used to access the value used for the preview.",
|
|
5992
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5993
|
-
"type": "string"
|
|
5994
|
-
}
|
|
5995
|
-
},
|
|
5996
|
-
"required": [
|
|
5997
|
-
"key"
|
|
5998
|
-
],
|
|
5999
|
-
"type": "object"
|
|
6000
|
-
},
|
|
6001
|
-
{
|
|
6002
|
-
"type": "string"
|
|
6003
|
-
},
|
|
6004
|
-
{
|
|
6005
|
-
"type": "boolean"
|
|
6006
|
-
}
|
|
6007
|
-
]
|
|
6008
|
-
},
|
|
6009
|
-
"type": "array"
|
|
6010
|
-
},
|
|
6011
|
-
{
|
|
6012
|
-
"type": "string"
|
|
6013
|
-
},
|
|
6014
|
-
{
|
|
6015
|
-
"type": "boolean"
|
|
6016
|
-
}
|
|
6017
|
-
],
|
|
5337
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6018
5338
|
"description": "Controls the image shown per item.",
|
|
6019
5339
|
"markdownDescription": "Controls the image shown per item."
|
|
6020
5340
|
},
|
|
6021
5341
|
"text": {
|
|
6022
|
-
"
|
|
6023
|
-
{
|
|
6024
|
-
"items": {
|
|
6025
|
-
"anyOf": [
|
|
6026
|
-
{
|
|
6027
|
-
"additionalProperties": false,
|
|
6028
|
-
"properties": {
|
|
6029
|
-
"key": {
|
|
6030
|
-
"description": "The key used to access the value used for the preview.",
|
|
6031
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6032
|
-
"type": "string"
|
|
6033
|
-
}
|
|
6034
|
-
},
|
|
6035
|
-
"required": [
|
|
6036
|
-
"key"
|
|
6037
|
-
],
|
|
6038
|
-
"type": "object"
|
|
6039
|
-
},
|
|
6040
|
-
{
|
|
6041
|
-
"type": "string"
|
|
6042
|
-
},
|
|
6043
|
-
{
|
|
6044
|
-
"type": "boolean"
|
|
6045
|
-
}
|
|
6046
|
-
]
|
|
6047
|
-
},
|
|
6048
|
-
"type": "array"
|
|
6049
|
-
},
|
|
6050
|
-
{
|
|
6051
|
-
"type": "string"
|
|
6052
|
-
},
|
|
6053
|
-
{
|
|
6054
|
-
"type": "boolean"
|
|
6055
|
-
}
|
|
6056
|
-
],
|
|
5342
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6057
5343
|
"description": "Controls the main text shown per item.",
|
|
6058
5344
|
"markdownDescription": "Controls the main text shown per item."
|
|
6059
5345
|
}
|
|
@@ -6154,22 +5440,423 @@
|
|
|
6154
5440
|
"markdownDescription": "The greatest value in the range of permitted values.",
|
|
6155
5441
|
"type": "number"
|
|
6156
5442
|
},
|
|
6157
|
-
"min": {
|
|
6158
|
-
"description": "The lowest value in the range of permitted values.",
|
|
6159
|
-
"markdownDescription": "The lowest value in the range of permitted values.",
|
|
6160
|
-
"type": "number"
|
|
5443
|
+
"min": {
|
|
5444
|
+
"description": "The lowest value in the range of permitted values.",
|
|
5445
|
+
"markdownDescription": "The lowest value in the range of permitted values.",
|
|
5446
|
+
"type": "number"
|
|
5447
|
+
},
|
|
5448
|
+
"step": {
|
|
5449
|
+
"description": "A number that specifies the granularity that the value must adhere to, or the special value any, which allows any decimal value between `max` and `min`.",
|
|
5450
|
+
"markdownDescription": "A number that specifies the granularity that the value must adhere to, or the special value\nany, which allows any decimal value between `max` and `min`.",
|
|
5451
|
+
"type": "number"
|
|
5452
|
+
}
|
|
5453
|
+
},
|
|
5454
|
+
"required": [
|
|
5455
|
+
"min",
|
|
5456
|
+
"max",
|
|
5457
|
+
"step"
|
|
5458
|
+
],
|
|
5459
|
+
"type": "object"
|
|
5460
|
+
},
|
|
5461
|
+
"ReaderCollectionConfig": {
|
|
5462
|
+
"additionalProperties": false,
|
|
5463
|
+
"description": "The `collections_config` entry format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
|
|
5464
|
+
"markdownDescription": "The `collections_config` entry format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
|
|
5465
|
+
"properties": {
|
|
5466
|
+
"_array_structures": {
|
|
5467
|
+
"additionalProperties": {},
|
|
5468
|
+
"deprecated": "Use _structures instead.",
|
|
5469
|
+
"description": "Now known as _structures.",
|
|
5470
|
+
"markdownDescription": "Now known as _structures.",
|
|
5471
|
+
"type": "object"
|
|
5472
|
+
},
|
|
5473
|
+
"_comments": {
|
|
5474
|
+
"additionalProperties": {
|
|
5475
|
+
"type": "string"
|
|
5476
|
+
},
|
|
5477
|
+
"deprecated": "Use _inputs instead.",
|
|
5478
|
+
"description": "Now part of _inputs.*.comment.",
|
|
5479
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
5480
|
+
"type": "object"
|
|
5481
|
+
},
|
|
5482
|
+
"_editables": {
|
|
5483
|
+
"$ref": "#/definitions/Editables",
|
|
5484
|
+
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
5485
|
+
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
5486
|
+
},
|
|
5487
|
+
"_enabled_editors": {
|
|
5488
|
+
"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.",
|
|
5489
|
+
"items": {
|
|
5490
|
+
"$ref": "#/definitions/EditorKey"
|
|
5491
|
+
},
|
|
5492
|
+
"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.",
|
|
5493
|
+
"type": "array"
|
|
5494
|
+
},
|
|
5495
|
+
"_inputs": {
|
|
5496
|
+
"additionalProperties": {
|
|
5497
|
+
"$ref": "#/definitions/Input"
|
|
5498
|
+
},
|
|
5499
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5500
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5501
|
+
"type": "object"
|
|
5502
|
+
},
|
|
5503
|
+
"_options": {
|
|
5504
|
+
"additionalProperties": {
|
|
5505
|
+
"additionalProperties": {},
|
|
5506
|
+
"type": "object"
|
|
5507
|
+
},
|
|
5508
|
+
"deprecated": "Use _inputs instead.",
|
|
5509
|
+
"description": "Now part of _inputs.*.options.",
|
|
5510
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
5511
|
+
"type": "object"
|
|
5512
|
+
},
|
|
5513
|
+
"_select_data": {
|
|
5514
|
+
"additionalProperties": {
|
|
5515
|
+
"$ref": "#/definitions/SelectValues"
|
|
5516
|
+
},
|
|
5517
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
5518
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
5519
|
+
"type": "object"
|
|
5520
|
+
},
|
|
5521
|
+
"_structures": {
|
|
5522
|
+
"additionalProperties": {
|
|
5523
|
+
"$ref": "#/definitions/Structure"
|
|
5524
|
+
},
|
|
5525
|
+
"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.",
|
|
5526
|
+
"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.",
|
|
5527
|
+
"type": "object"
|
|
5528
|
+
},
|
|
5529
|
+
"add_options": {
|
|
5530
|
+
"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.",
|
|
5531
|
+
"items": {
|
|
5532
|
+
"$ref": "#/definitions/AddOption"
|
|
5533
|
+
},
|
|
5534
|
+
"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.",
|
|
5535
|
+
"type": "array"
|
|
5536
|
+
},
|
|
5537
|
+
"create": {
|
|
5538
|
+
"$ref": "#/definitions/Create",
|
|
5539
|
+
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
5540
|
+
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
5541
|
+
},
|
|
5542
|
+
"description": {
|
|
5543
|
+
"description": "Text or Markdown to show above the collection file list.",
|
|
5544
|
+
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
5545
|
+
"type": "string"
|
|
5546
|
+
},
|
|
5547
|
+
"disable_add": {
|
|
5548
|
+
"description": "Prevents users from adding new files in the collection file list if true.",
|
|
5549
|
+
"markdownDescription": "Prevents users from adding new files in the collection file list if true.",
|
|
5550
|
+
"type": "boolean"
|
|
5551
|
+
},
|
|
5552
|
+
"disable_add_folder": {
|
|
5553
|
+
"description": "Prevents users from adding new folders in the collection file list if true.",
|
|
5554
|
+
"markdownDescription": "Prevents users from adding new folders in the collection file list if true.",
|
|
5555
|
+
"type": "boolean"
|
|
5556
|
+
},
|
|
5557
|
+
"disable_file_actions": {
|
|
5558
|
+
"description": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
|
|
5559
|
+
"markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
|
|
5560
|
+
"type": "boolean"
|
|
5561
|
+
},
|
|
5562
|
+
"documentation": {
|
|
5563
|
+
"$ref": "#/definitions/Documentation",
|
|
5564
|
+
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
5565
|
+
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
5566
|
+
},
|
|
5567
|
+
"filter": {
|
|
5568
|
+
"anyOf": [
|
|
5569
|
+
{
|
|
5570
|
+
"$ref": "#/definitions/Filter"
|
|
5571
|
+
},
|
|
5572
|
+
{
|
|
5573
|
+
"$ref": "#/definitions/FilterBase"
|
|
5574
|
+
}
|
|
5575
|
+
],
|
|
5576
|
+
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
5577
|
+
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
5578
|
+
},
|
|
5579
|
+
"glob": {
|
|
5580
|
+
"anyOf": [
|
|
5581
|
+
{
|
|
5582
|
+
"items": {
|
|
5583
|
+
"type": "string"
|
|
5584
|
+
},
|
|
5585
|
+
"type": "array"
|
|
5586
|
+
},
|
|
5587
|
+
{
|
|
5588
|
+
"type": "string"
|
|
5589
|
+
}
|
|
5590
|
+
],
|
|
5591
|
+
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
5592
|
+
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
5593
|
+
},
|
|
5594
|
+
"icon": {
|
|
5595
|
+
"$ref": "#/definitions/Icon",
|
|
5596
|
+
"description": "Sets an icon to use alongside references to this collection.",
|
|
5597
|
+
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
5598
|
+
},
|
|
5599
|
+
"name": {
|
|
5600
|
+
"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.",
|
|
5601
|
+
"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.",
|
|
5602
|
+
"type": "string"
|
|
5603
|
+
},
|
|
5604
|
+
"new_preview_url": {
|
|
5605
|
+
"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.",
|
|
5606
|
+
"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.",
|
|
5607
|
+
"type": "string"
|
|
5608
|
+
},
|
|
5609
|
+
"output": {
|
|
5610
|
+
"description": "Whether or not files in this collection produce files in the build output.",
|
|
5611
|
+
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
5612
|
+
"type": "boolean"
|
|
5613
|
+
},
|
|
5614
|
+
"parser": {
|
|
5615
|
+
"description": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
5616
|
+
"enum": [
|
|
5617
|
+
"csv",
|
|
5618
|
+
"front-matter",
|
|
5619
|
+
"json",
|
|
5620
|
+
"properties",
|
|
5621
|
+
"toml",
|
|
5622
|
+
"yaml"
|
|
5623
|
+
],
|
|
5624
|
+
"markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
5625
|
+
"type": "string"
|
|
5626
|
+
},
|
|
5627
|
+
"path": {
|
|
5628
|
+
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
5629
|
+
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
5630
|
+
"type": "string"
|
|
5631
|
+
},
|
|
5632
|
+
"preview": {
|
|
5633
|
+
"$ref": "#/definitions/Preview",
|
|
5634
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
5635
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
5636
|
+
},
|
|
5637
|
+
"schema_key": {
|
|
5638
|
+
"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.",
|
|
5639
|
+
"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.",
|
|
5640
|
+
"type": "string"
|
|
5641
|
+
},
|
|
5642
|
+
"schemas": {
|
|
5643
|
+
"additionalProperties": {
|
|
5644
|
+
"$ref": "#/definitions/Schema"
|
|
5645
|
+
},
|
|
5646
|
+
"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.",
|
|
5647
|
+
"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.",
|
|
5648
|
+
"type": "object"
|
|
5649
|
+
},
|
|
5650
|
+
"singular_key": {
|
|
5651
|
+
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
5652
|
+
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
5653
|
+
"type": "string"
|
|
5654
|
+
},
|
|
5655
|
+
"singular_name": {
|
|
5656
|
+
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
5657
|
+
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
5658
|
+
"type": "string"
|
|
5659
|
+
},
|
|
5660
|
+
"sort": {
|
|
5661
|
+
"$ref": "#/definitions/Sort",
|
|
5662
|
+
"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.",
|
|
5663
|
+
"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."
|
|
5664
|
+
},
|
|
5665
|
+
"sort_options": {
|
|
5666
|
+
"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.",
|
|
5667
|
+
"items": {
|
|
5668
|
+
"$ref": "#/definitions/SortOption"
|
|
5669
|
+
},
|
|
5670
|
+
"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.",
|
|
5671
|
+
"type": "array"
|
|
5672
|
+
},
|
|
5673
|
+
"url": {
|
|
5674
|
+
"description": "Used to build the url field for items in the collection. Similar to permalink in many SSGs. Defaults to ''",
|
|
5675
|
+
"markdownDescription": "Used to build the url field for items in the collection. Similar to permalink in many SSGs.\nDefaults to ''",
|
|
5676
|
+
"type": "string"
|
|
5677
|
+
}
|
|
5678
|
+
},
|
|
5679
|
+
"type": "object"
|
|
5680
|
+
},
|
|
5681
|
+
"ReaderConfiguration": {
|
|
5682
|
+
"additionalProperties": false,
|
|
5683
|
+
"description": "The configuration format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
|
|
5684
|
+
"markdownDescription": "The configuration format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
|
|
5685
|
+
"properties": {
|
|
5686
|
+
"_array_structures": {
|
|
5687
|
+
"additionalProperties": {},
|
|
5688
|
+
"deprecated": "Use _structures instead.",
|
|
5689
|
+
"description": "Now known as _structures.",
|
|
5690
|
+
"markdownDescription": "Now known as _structures.",
|
|
5691
|
+
"type": "object"
|
|
5692
|
+
},
|
|
5693
|
+
"_comments": {
|
|
5694
|
+
"additionalProperties": {
|
|
5695
|
+
"type": "string"
|
|
5696
|
+
},
|
|
5697
|
+
"deprecated": "Use _inputs instead.",
|
|
5698
|
+
"description": "Now part of _inputs.*.comment.",
|
|
5699
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
5700
|
+
"type": "object"
|
|
5701
|
+
},
|
|
5702
|
+
"_editables": {
|
|
5703
|
+
"$ref": "#/definitions/Editables",
|
|
5704
|
+
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
5705
|
+
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
5706
|
+
},
|
|
5707
|
+
"_enabled_editors": {
|
|
5708
|
+
"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.",
|
|
5709
|
+
"items": {
|
|
5710
|
+
"$ref": "#/definitions/EditorKey"
|
|
5711
|
+
},
|
|
5712
|
+
"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.",
|
|
5713
|
+
"type": "array"
|
|
5714
|
+
},
|
|
5715
|
+
"_inputs": {
|
|
5716
|
+
"additionalProperties": {
|
|
5717
|
+
"$ref": "#/definitions/Input"
|
|
5718
|
+
},
|
|
5719
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5720
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5721
|
+
"type": "object"
|
|
5722
|
+
},
|
|
5723
|
+
"_options": {
|
|
5724
|
+
"additionalProperties": {
|
|
5725
|
+
"additionalProperties": {},
|
|
5726
|
+
"type": "object"
|
|
5727
|
+
},
|
|
5728
|
+
"deprecated": "Use _inputs instead.",
|
|
5729
|
+
"description": "Now part of _inputs.*.options.",
|
|
5730
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
5731
|
+
"type": "object"
|
|
5732
|
+
},
|
|
5733
|
+
"_select_data": {
|
|
5734
|
+
"additionalProperties": {
|
|
5735
|
+
"$ref": "#/definitions/SelectValues"
|
|
5736
|
+
},
|
|
5737
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
5738
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
5739
|
+
"type": "object"
|
|
5740
|
+
},
|
|
5741
|
+
"_snippets": {
|
|
5742
|
+
"additionalProperties": {
|
|
5743
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
5744
|
+
},
|
|
5745
|
+
"description": "Configuration for custom snippets.",
|
|
5746
|
+
"markdownDescription": "Configuration for custom snippets.",
|
|
5747
|
+
"type": "object"
|
|
5748
|
+
},
|
|
5749
|
+
"_snippets_definitions": {
|
|
5750
|
+
"additionalProperties": {
|
|
5751
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
5752
|
+
},
|
|
5753
|
+
"description": "Extended option used when creating more complex custom snippets.",
|
|
5754
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
5755
|
+
"type": "object"
|
|
5756
|
+
},
|
|
5757
|
+
"_snippets_imports": {
|
|
5758
|
+
"$ref": "#/definitions/SnippetsImports",
|
|
5759
|
+
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
5760
|
+
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
5761
|
+
},
|
|
5762
|
+
"_snippets_templates": {
|
|
5763
|
+
"additionalProperties": {
|
|
5764
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
5765
|
+
},
|
|
5766
|
+
"description": "Extended option used when creating more complex custom snippets.",
|
|
5767
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
5768
|
+
"type": "object"
|
|
5769
|
+
},
|
|
5770
|
+
"_structures": {
|
|
5771
|
+
"additionalProperties": {
|
|
5772
|
+
"$ref": "#/definitions/Structure"
|
|
5773
|
+
},
|
|
5774
|
+
"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.",
|
|
5775
|
+
"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.",
|
|
5776
|
+
"type": "object"
|
|
5777
|
+
},
|
|
5778
|
+
"base_url": {
|
|
5779
|
+
"description": "The subpath where your output files are hosted.",
|
|
5780
|
+
"markdownDescription": "The subpath where your output files are hosted.",
|
|
5781
|
+
"type": "string"
|
|
5782
|
+
},
|
|
5783
|
+
"collection_groups": {
|
|
5784
|
+
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
5785
|
+
"items": {
|
|
5786
|
+
"$ref": "#/definitions/CollectionGroup"
|
|
5787
|
+
},
|
|
5788
|
+
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
5789
|
+
"type": "array"
|
|
5790
|
+
},
|
|
5791
|
+
"collections_config": {
|
|
5792
|
+
"additionalProperties": {
|
|
5793
|
+
"$ref": "#/definitions/ReaderCollectionConfig"
|
|
5794
|
+
},
|
|
5795
|
+
"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.",
|
|
5796
|
+
"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.",
|
|
5797
|
+
"type": "object"
|
|
5798
|
+
},
|
|
5799
|
+
"commit_templates": {
|
|
5800
|
+
"description": "Templates for commit messages when saving changes.",
|
|
5801
|
+
"items": {
|
|
5802
|
+
"$ref": "#/definitions/CommitTemplate"
|
|
5803
|
+
},
|
|
5804
|
+
"markdownDescription": "Templates for commit messages when saving changes.",
|
|
5805
|
+
"type": "array"
|
|
5806
|
+
},
|
|
5807
|
+
"data_config": {
|
|
5808
|
+
"additionalProperties": {
|
|
5809
|
+
"$ref": "#/definitions/DataConfigEntry"
|
|
5810
|
+
},
|
|
5811
|
+
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
5812
|
+
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
5813
|
+
"type": "object"
|
|
5814
|
+
},
|
|
5815
|
+
"editor": {
|
|
5816
|
+
"$ref": "#/definitions/Editor",
|
|
5817
|
+
"description": "Contains settings for the default editor actions on your site.",
|
|
5818
|
+
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
5819
|
+
},
|
|
5820
|
+
"file_config": {
|
|
5821
|
+
"additionalProperties": {
|
|
5822
|
+
"$ref": "#/definitions/FileConfigEntry"
|
|
5823
|
+
},
|
|
5824
|
+
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
5825
|
+
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
5826
|
+
"type": "object"
|
|
5827
|
+
},
|
|
5828
|
+
"markdown": {
|
|
5829
|
+
"$ref": "#/definitions/MarkdownSettings",
|
|
5830
|
+
"description": "Contains settings for various Markdown engines.",
|
|
5831
|
+
"markdownDescription": "Contains settings for various Markdown engines."
|
|
5832
|
+
},
|
|
5833
|
+
"output": {
|
|
5834
|
+
"description": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy. Defaults to the root folder.",
|
|
5835
|
+
"markdownDescription": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy.\nDefaults to the root folder.",
|
|
5836
|
+
"type": "string"
|
|
5837
|
+
},
|
|
5838
|
+
"paths": {
|
|
5839
|
+
"$ref": "#/definitions/Paths",
|
|
5840
|
+
"description": "Global paths to common folders.",
|
|
5841
|
+
"markdownDescription": "Global paths to common folders."
|
|
5842
|
+
},
|
|
5843
|
+
"source": {
|
|
5844
|
+
"description": "Base path to your site source files, relative to the root folder.",
|
|
5845
|
+
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
5846
|
+
"type": "string"
|
|
6161
5847
|
},
|
|
6162
|
-
"
|
|
6163
|
-
"
|
|
6164
|
-
"
|
|
6165
|
-
"
|
|
5848
|
+
"source_editor": {
|
|
5849
|
+
"$ref": "#/definitions/SourceEditor",
|
|
5850
|
+
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
5851
|
+
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
5852
|
+
},
|
|
5853
|
+
"timezone": {
|
|
5854
|
+
"$ref": "#/definitions/Timezone",
|
|
5855
|
+
"default": "Etc/UTC",
|
|
5856
|
+
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
5857
|
+
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
6166
5858
|
}
|
|
6167
5859
|
},
|
|
6168
|
-
"required": [
|
|
6169
|
-
"min",
|
|
6170
|
-
"max",
|
|
6171
|
-
"step"
|
|
6172
|
-
],
|
|
6173
5860
|
"type": "object"
|
|
6174
5861
|
},
|
|
6175
5862
|
"ReducedPaths": {
|
|
@@ -6342,8 +6029,18 @@
|
|
|
6342
6029
|
"type": "string"
|
|
6343
6030
|
},
|
|
6344
6031
|
"code": {
|
|
6345
|
-
"description": "Enables
|
|
6346
|
-
"markdownDescription": "Enables
|
|
6032
|
+
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
6033
|
+
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
6034
|
+
"type": "boolean"
|
|
6035
|
+
},
|
|
6036
|
+
"code_block": {
|
|
6037
|
+
"description": "Enables a control to insert a code block.",
|
|
6038
|
+
"markdownDescription": "Enables a control to insert a code block.",
|
|
6039
|
+
"type": "boolean"
|
|
6040
|
+
},
|
|
6041
|
+
"code_inline": {
|
|
6042
|
+
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
6043
|
+
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
6347
6044
|
"type": "boolean"
|
|
6348
6045
|
},
|
|
6349
6046
|
"copyformatting": {
|
|
@@ -6351,12 +6048,6 @@
|
|
|
6351
6048
|
"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.",
|
|
6352
6049
|
"type": "boolean"
|
|
6353
6050
|
},
|
|
6354
|
-
"correct_orientation": {
|
|
6355
|
-
"default": true,
|
|
6356
|
-
"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.",
|
|
6357
|
-
"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.",
|
|
6358
|
-
"type": "boolean"
|
|
6359
|
-
},
|
|
6360
6051
|
"embed": {
|
|
6361
6052
|
"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.",
|
|
6362
6053
|
"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.",
|
|
@@ -6433,7 +6124,8 @@
|
|
|
6433
6124
|
"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.",
|
|
6434
6125
|
"enum": [
|
|
6435
6126
|
"image/jpeg",
|
|
6436
|
-
"image/png"
|
|
6127
|
+
"image/png",
|
|
6128
|
+
"image/webp"
|
|
6437
6129
|
],
|
|
6438
6130
|
"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.",
|
|
6439
6131
|
"type": "string"
|
|
@@ -6568,16 +6260,18 @@
|
|
|
6568
6260
|
"properties": {
|
|
6569
6261
|
"_array_structures": {
|
|
6570
6262
|
"additionalProperties": {},
|
|
6571
|
-
"
|
|
6572
|
-
"
|
|
6263
|
+
"deprecated": "Use _structures instead.",
|
|
6264
|
+
"description": "Now known as _structures.",
|
|
6265
|
+
"markdownDescription": "Now known as _structures.",
|
|
6573
6266
|
"type": "object"
|
|
6574
6267
|
},
|
|
6575
6268
|
"_comments": {
|
|
6576
6269
|
"additionalProperties": {
|
|
6577
6270
|
"type": "string"
|
|
6578
6271
|
},
|
|
6579
|
-
"
|
|
6580
|
-
"
|
|
6272
|
+
"deprecated": "Use _inputs instead.",
|
|
6273
|
+
"description": "Now part of _inputs.*.comment.",
|
|
6274
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
6581
6275
|
"type": "object"
|
|
6582
6276
|
},
|
|
6583
6277
|
"_editables": {
|
|
@@ -6606,8 +6300,9 @@
|
|
|
6606
6300
|
"additionalProperties": {},
|
|
6607
6301
|
"type": "object"
|
|
6608
6302
|
},
|
|
6609
|
-
"
|
|
6610
|
-
"
|
|
6303
|
+
"deprecated": "Use _inputs instead.",
|
|
6304
|
+
"description": "Now part of _inputs.*.options.",
|
|
6305
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
6611
6306
|
"type": "object"
|
|
6612
6307
|
},
|
|
6613
6308
|
"_select_data": {
|
|
@@ -6805,80 +6500,12 @@
|
|
|
6805
6500
|
"additionalProperties": false,
|
|
6806
6501
|
"properties": {
|
|
6807
6502
|
"icon": {
|
|
6808
|
-
"
|
|
6809
|
-
{
|
|
6810
|
-
"items": {
|
|
6811
|
-
"anyOf": [
|
|
6812
|
-
{
|
|
6813
|
-
"additionalProperties": false,
|
|
6814
|
-
"properties": {
|
|
6815
|
-
"key": {
|
|
6816
|
-
"description": "The key used to access the value used for the preview.",
|
|
6817
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6818
|
-
"type": "string"
|
|
6819
|
-
}
|
|
6820
|
-
},
|
|
6821
|
-
"required": [
|
|
6822
|
-
"key"
|
|
6823
|
-
],
|
|
6824
|
-
"type": "object"
|
|
6825
|
-
},
|
|
6826
|
-
{
|
|
6827
|
-
"type": "string"
|
|
6828
|
-
},
|
|
6829
|
-
{
|
|
6830
|
-
"type": "boolean"
|
|
6831
|
-
}
|
|
6832
|
-
]
|
|
6833
|
-
},
|
|
6834
|
-
"type": "array"
|
|
6835
|
-
},
|
|
6836
|
-
{
|
|
6837
|
-
"type": "string"
|
|
6838
|
-
},
|
|
6839
|
-
{
|
|
6840
|
-
"type": "boolean"
|
|
6841
|
-
}
|
|
6842
|
-
],
|
|
6503
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6843
6504
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
6844
6505
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
6845
6506
|
},
|
|
6846
6507
|
"text": {
|
|
6847
|
-
"
|
|
6848
|
-
{
|
|
6849
|
-
"items": {
|
|
6850
|
-
"anyOf": [
|
|
6851
|
-
{
|
|
6852
|
-
"additionalProperties": false,
|
|
6853
|
-
"properties": {
|
|
6854
|
-
"key": {
|
|
6855
|
-
"description": "The key used to access the value used for the preview.",
|
|
6856
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6857
|
-
"type": "string"
|
|
6858
|
-
}
|
|
6859
|
-
},
|
|
6860
|
-
"required": [
|
|
6861
|
-
"key"
|
|
6862
|
-
],
|
|
6863
|
-
"type": "object"
|
|
6864
|
-
},
|
|
6865
|
-
{
|
|
6866
|
-
"type": "string"
|
|
6867
|
-
},
|
|
6868
|
-
{
|
|
6869
|
-
"type": "boolean"
|
|
6870
|
-
}
|
|
6871
|
-
]
|
|
6872
|
-
},
|
|
6873
|
-
"type": "array"
|
|
6874
|
-
},
|
|
6875
|
-
{
|
|
6876
|
-
"type": "string"
|
|
6877
|
-
},
|
|
6878
|
-
{
|
|
6879
|
-
"type": "boolean"
|
|
6880
|
-
}
|
|
6881
|
-
],
|
|
6508
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6882
6509
|
"description": "Controls the main text shown per item.",
|
|
6883
6510
|
"markdownDescription": "Controls the main text shown per item."
|
|
6884
6511
|
}
|
|
@@ -6988,6 +6615,354 @@
|
|
|
6988
6615
|
},
|
|
6989
6616
|
"type": "object"
|
|
6990
6617
|
},
|
|
6618
|
+
"SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
|
|
6619
|
+
"additionalProperties": false,
|
|
6620
|
+
"properties": {
|
|
6621
|
+
"exclude": {
|
|
6622
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6623
|
+
"items": {
|
|
6624
|
+
"enum": [
|
|
6625
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6626
|
+
"_cc_jekyll_unknown_tag",
|
|
6627
|
+
"jekyll_highlight",
|
|
6628
|
+
"_cc_jekyll_template",
|
|
6629
|
+
"jekyll_raw",
|
|
6630
|
+
"jekyll_link",
|
|
6631
|
+
"jekyll_post_url"
|
|
6632
|
+
],
|
|
6633
|
+
"type": "string"
|
|
6634
|
+
},
|
|
6635
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6636
|
+
"type": "array"
|
|
6637
|
+
},
|
|
6638
|
+
"include": {
|
|
6639
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6640
|
+
"items": {
|
|
6641
|
+
"enum": [
|
|
6642
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6643
|
+
"_cc_jekyll_unknown_tag",
|
|
6644
|
+
"jekyll_highlight",
|
|
6645
|
+
"_cc_jekyll_template",
|
|
6646
|
+
"jekyll_raw",
|
|
6647
|
+
"jekyll_link",
|
|
6648
|
+
"jekyll_post_url"
|
|
6649
|
+
],
|
|
6650
|
+
"type": "string"
|
|
6651
|
+
},
|
|
6652
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6653
|
+
"type": "array"
|
|
6654
|
+
}
|
|
6655
|
+
},
|
|
6656
|
+
"type": "object"
|
|
6657
|
+
},
|
|
6658
|
+
"SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
|
|
6659
|
+
"additionalProperties": false,
|
|
6660
|
+
"properties": {
|
|
6661
|
+
"exclude": {
|
|
6662
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6663
|
+
"items": {
|
|
6664
|
+
"enum": [
|
|
6665
|
+
"docusaurus_mdx_admonition",
|
|
6666
|
+
"docusaurus_mdx_tabs",
|
|
6667
|
+
"docusaurus_mdx_truncate",
|
|
6668
|
+
"docusaurus_mdx_codeblock"
|
|
6669
|
+
],
|
|
6670
|
+
"type": "string"
|
|
6671
|
+
},
|
|
6672
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6673
|
+
"type": "array"
|
|
6674
|
+
},
|
|
6675
|
+
"include": {
|
|
6676
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6677
|
+
"items": {
|
|
6678
|
+
"enum": [
|
|
6679
|
+
"docusaurus_mdx_admonition",
|
|
6680
|
+
"docusaurus_mdx_tabs",
|
|
6681
|
+
"docusaurus_mdx_truncate",
|
|
6682
|
+
"docusaurus_mdx_codeblock"
|
|
6683
|
+
],
|
|
6684
|
+
"type": "string"
|
|
6685
|
+
},
|
|
6686
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6687
|
+
"type": "array"
|
|
6688
|
+
}
|
|
6689
|
+
},
|
|
6690
|
+
"type": "object"
|
|
6691
|
+
},
|
|
6692
|
+
"SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
|
|
6693
|
+
"additionalProperties": false,
|
|
6694
|
+
"properties": {
|
|
6695
|
+
"exclude": {
|
|
6696
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6697
|
+
"items": {
|
|
6698
|
+
"enum": [
|
|
6699
|
+
"eleventy_liquid_raw",
|
|
6700
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6701
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6702
|
+
"_cc_eleventy_liquid_template"
|
|
6703
|
+
],
|
|
6704
|
+
"type": "string"
|
|
6705
|
+
},
|
|
6706
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6707
|
+
"type": "array"
|
|
6708
|
+
},
|
|
6709
|
+
"include": {
|
|
6710
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6711
|
+
"items": {
|
|
6712
|
+
"enum": [
|
|
6713
|
+
"eleventy_liquid_raw",
|
|
6714
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6715
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6716
|
+
"_cc_eleventy_liquid_template"
|
|
6717
|
+
],
|
|
6718
|
+
"type": "string"
|
|
6719
|
+
},
|
|
6720
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6721
|
+
"type": "array"
|
|
6722
|
+
}
|
|
6723
|
+
},
|
|
6724
|
+
"type": "object"
|
|
6725
|
+
},
|
|
6726
|
+
"SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
|
|
6727
|
+
"additionalProperties": false,
|
|
6728
|
+
"properties": {
|
|
6729
|
+
"exclude": {
|
|
6730
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6731
|
+
"items": {
|
|
6732
|
+
"enum": [
|
|
6733
|
+
"eleventy_nunjucks_raw",
|
|
6734
|
+
"eleventy_nunjucks_verbatim",
|
|
6735
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6736
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6737
|
+
"_cc_eleventy_nunjucks_template"
|
|
6738
|
+
],
|
|
6739
|
+
"type": "string"
|
|
6740
|
+
},
|
|
6741
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6742
|
+
"type": "array"
|
|
6743
|
+
},
|
|
6744
|
+
"include": {
|
|
6745
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6746
|
+
"items": {
|
|
6747
|
+
"enum": [
|
|
6748
|
+
"eleventy_nunjucks_raw",
|
|
6749
|
+
"eleventy_nunjucks_verbatim",
|
|
6750
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6751
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6752
|
+
"_cc_eleventy_nunjucks_template"
|
|
6753
|
+
],
|
|
6754
|
+
"type": "string"
|
|
6755
|
+
},
|
|
6756
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6757
|
+
"type": "array"
|
|
6758
|
+
}
|
|
6759
|
+
},
|
|
6760
|
+
"type": "object"
|
|
6761
|
+
},
|
|
6762
|
+
"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\")>": {
|
|
6763
|
+
"additionalProperties": false,
|
|
6764
|
+
"properties": {
|
|
6765
|
+
"exclude": {
|
|
6766
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6767
|
+
"items": {
|
|
6768
|
+
"enum": [
|
|
6769
|
+
"hugo_summary_divider",
|
|
6770
|
+
"hugo_highlight",
|
|
6771
|
+
"hugo_figure",
|
|
6772
|
+
"hugo_gist",
|
|
6773
|
+
"hugo_instagram",
|
|
6774
|
+
"hugo_param",
|
|
6775
|
+
"hugo_ref",
|
|
6776
|
+
"hugo_relref",
|
|
6777
|
+
"hugo_tweet",
|
|
6778
|
+
"hugo_vimeo",
|
|
6779
|
+
"hugo_youtube",
|
|
6780
|
+
"_cc_hugo_unknown_paired",
|
|
6781
|
+
"_cc_hugo_unknown",
|
|
6782
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6783
|
+
"_cc_hugo_unknown_processed"
|
|
6784
|
+
],
|
|
6785
|
+
"type": "string"
|
|
6786
|
+
},
|
|
6787
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6788
|
+
"type": "array"
|
|
6789
|
+
},
|
|
6790
|
+
"include": {
|
|
6791
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6792
|
+
"items": {
|
|
6793
|
+
"enum": [
|
|
6794
|
+
"hugo_summary_divider",
|
|
6795
|
+
"hugo_highlight",
|
|
6796
|
+
"hugo_figure",
|
|
6797
|
+
"hugo_gist",
|
|
6798
|
+
"hugo_instagram",
|
|
6799
|
+
"hugo_param",
|
|
6800
|
+
"hugo_ref",
|
|
6801
|
+
"hugo_relref",
|
|
6802
|
+
"hugo_tweet",
|
|
6803
|
+
"hugo_vimeo",
|
|
6804
|
+
"hugo_youtube",
|
|
6805
|
+
"_cc_hugo_unknown_paired",
|
|
6806
|
+
"_cc_hugo_unknown",
|
|
6807
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6808
|
+
"_cc_hugo_unknown_processed"
|
|
6809
|
+
],
|
|
6810
|
+
"type": "string"
|
|
6811
|
+
},
|
|
6812
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6813
|
+
"type": "array"
|
|
6814
|
+
}
|
|
6815
|
+
},
|
|
6816
|
+
"type": "object"
|
|
6817
|
+
},
|
|
6818
|
+
"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\")>": {
|
|
6819
|
+
"additionalProperties": false,
|
|
6820
|
+
"properties": {
|
|
6821
|
+
"exclude": {
|
|
6822
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6823
|
+
"items": {
|
|
6824
|
+
"enum": [
|
|
6825
|
+
"import",
|
|
6826
|
+
"_cc_mdx_unknown_export",
|
|
6827
|
+
"_cc_mdx_unknown_export_expression",
|
|
6828
|
+
"_cc_mdx_unknown_export_default",
|
|
6829
|
+
"_cc_mdx_unknown_template",
|
|
6830
|
+
"_cc_mdx_paired_unknown",
|
|
6831
|
+
"_cc_mdx_unknown"
|
|
6832
|
+
],
|
|
6833
|
+
"type": "string"
|
|
6834
|
+
},
|
|
6835
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6836
|
+
"type": "array"
|
|
6837
|
+
},
|
|
6838
|
+
"include": {
|
|
6839
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6840
|
+
"items": {
|
|
6841
|
+
"enum": [
|
|
6842
|
+
"import",
|
|
6843
|
+
"_cc_mdx_unknown_export",
|
|
6844
|
+
"_cc_mdx_unknown_export_expression",
|
|
6845
|
+
"_cc_mdx_unknown_export_default",
|
|
6846
|
+
"_cc_mdx_unknown_template",
|
|
6847
|
+
"_cc_mdx_paired_unknown",
|
|
6848
|
+
"_cc_mdx_unknown"
|
|
6849
|
+
],
|
|
6850
|
+
"type": "string"
|
|
6851
|
+
},
|
|
6852
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6853
|
+
"type": "array"
|
|
6854
|
+
}
|
|
6855
|
+
},
|
|
6856
|
+
"type": "object"
|
|
6857
|
+
},
|
|
6858
|
+
"SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
|
|
6859
|
+
"additionalProperties": false,
|
|
6860
|
+
"properties": {
|
|
6861
|
+
"exclude": {
|
|
6862
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6863
|
+
"items": {
|
|
6864
|
+
"enum": [
|
|
6865
|
+
"markdoc_id_annotation",
|
|
6866
|
+
"markdoc_class_annotation",
|
|
6867
|
+
"markdoc_table",
|
|
6868
|
+
"_cc_markdoc_unknown_tag",
|
|
6869
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6870
|
+
"_cc_markdoc_unknown_template"
|
|
6871
|
+
],
|
|
6872
|
+
"type": "string"
|
|
6873
|
+
},
|
|
6874
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6875
|
+
"type": "array"
|
|
6876
|
+
},
|
|
6877
|
+
"include": {
|
|
6878
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6879
|
+
"items": {
|
|
6880
|
+
"enum": [
|
|
6881
|
+
"markdoc_id_annotation",
|
|
6882
|
+
"markdoc_class_annotation",
|
|
6883
|
+
"markdoc_table",
|
|
6884
|
+
"_cc_markdoc_unknown_tag",
|
|
6885
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6886
|
+
"_cc_markdoc_unknown_template"
|
|
6887
|
+
],
|
|
6888
|
+
"type": "string"
|
|
6889
|
+
},
|
|
6890
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6891
|
+
"type": "array"
|
|
6892
|
+
}
|
|
6893
|
+
},
|
|
6894
|
+
"type": "object"
|
|
6895
|
+
},
|
|
6896
|
+
"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\")>": {
|
|
6897
|
+
"additionalProperties": false,
|
|
6898
|
+
"properties": {
|
|
6899
|
+
"exclude": {
|
|
6900
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6901
|
+
"items": {
|
|
6902
|
+
"enum": [
|
|
6903
|
+
"python_markdown_abbreviation",
|
|
6904
|
+
"python_markdown_admonition",
|
|
6905
|
+
"python_markdown_arithmatex",
|
|
6906
|
+
"python_markdown_attribute_list",
|
|
6907
|
+
"python_markdown_code_block",
|
|
6908
|
+
"python_markdown_collapsible_admonition",
|
|
6909
|
+
"python_markdown_tabs",
|
|
6910
|
+
"python_markdown_footnote",
|
|
6911
|
+
"python_markdown_footnote_marker",
|
|
6912
|
+
"python_markdown_icon",
|
|
6913
|
+
"python_markdown_image",
|
|
6914
|
+
"python_markdown_inline_arithmatex",
|
|
6915
|
+
"python_markdown_inline_code",
|
|
6916
|
+
"python_markdown_link",
|
|
6917
|
+
"python_markdown_reference_image",
|
|
6918
|
+
"python_markdown_reference_template_image",
|
|
6919
|
+
"python_markdown_reference_link",
|
|
6920
|
+
"python_markdown_reference",
|
|
6921
|
+
"python_markdown_reference_template",
|
|
6922
|
+
"python_markdown_block_snippet",
|
|
6923
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6924
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6925
|
+
],
|
|
6926
|
+
"type": "string"
|
|
6927
|
+
},
|
|
6928
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6929
|
+
"type": "array"
|
|
6930
|
+
},
|
|
6931
|
+
"include": {
|
|
6932
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6933
|
+
"items": {
|
|
6934
|
+
"enum": [
|
|
6935
|
+
"python_markdown_abbreviation",
|
|
6936
|
+
"python_markdown_admonition",
|
|
6937
|
+
"python_markdown_arithmatex",
|
|
6938
|
+
"python_markdown_attribute_list",
|
|
6939
|
+
"python_markdown_code_block",
|
|
6940
|
+
"python_markdown_collapsible_admonition",
|
|
6941
|
+
"python_markdown_tabs",
|
|
6942
|
+
"python_markdown_footnote",
|
|
6943
|
+
"python_markdown_footnote_marker",
|
|
6944
|
+
"python_markdown_icon",
|
|
6945
|
+
"python_markdown_image",
|
|
6946
|
+
"python_markdown_inline_arithmatex",
|
|
6947
|
+
"python_markdown_inline_code",
|
|
6948
|
+
"python_markdown_link",
|
|
6949
|
+
"python_markdown_reference_image",
|
|
6950
|
+
"python_markdown_reference_template_image",
|
|
6951
|
+
"python_markdown_reference_link",
|
|
6952
|
+
"python_markdown_reference",
|
|
6953
|
+
"python_markdown_reference_template",
|
|
6954
|
+
"python_markdown_block_snippet",
|
|
6955
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6956
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6957
|
+
],
|
|
6958
|
+
"type": "string"
|
|
6959
|
+
},
|
|
6960
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6961
|
+
"type": "array"
|
|
6962
|
+
}
|
|
6963
|
+
},
|
|
6964
|
+
"type": "object"
|
|
6965
|
+
},
|
|
6991
6966
|
"SnippetsImports": {
|
|
6992
6967
|
"additionalProperties": false,
|
|
6993
6968
|
"properties": {
|
|
@@ -6997,38 +6972,7 @@
|
|
|
6997
6972
|
"type": "boolean"
|
|
6998
6973
|
},
|
|
6999
6974
|
{
|
|
7000
|
-
"
|
|
7001
|
-
"properties": {
|
|
7002
|
-
"exclude": {
|
|
7003
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7004
|
-
"items": {
|
|
7005
|
-
"enum": [
|
|
7006
|
-
"docusaurus_mdx_admonition",
|
|
7007
|
-
"docusaurus_mdx_tabs",
|
|
7008
|
-
"docusaurus_mdx_truncate",
|
|
7009
|
-
"docusaurus_mdx_codeblock"
|
|
7010
|
-
],
|
|
7011
|
-
"type": "string"
|
|
7012
|
-
},
|
|
7013
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7014
|
-
"type": "array"
|
|
7015
|
-
},
|
|
7016
|
-
"include": {
|
|
7017
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7018
|
-
"items": {
|
|
7019
|
-
"enum": [
|
|
7020
|
-
"docusaurus_mdx_admonition",
|
|
7021
|
-
"docusaurus_mdx_tabs",
|
|
7022
|
-
"docusaurus_mdx_truncate",
|
|
7023
|
-
"docusaurus_mdx_codeblock"
|
|
7024
|
-
],
|
|
7025
|
-
"type": "string"
|
|
7026
|
-
},
|
|
7027
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7028
|
-
"type": "array"
|
|
7029
|
-
}
|
|
7030
|
-
},
|
|
7031
|
-
"type": "object"
|
|
6975
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22docusaurus_mdx_admonition%22%7C%22docusaurus_mdx_tabs%22%7C%22docusaurus_mdx_truncate%22%7C%22docusaurus_mdx_codeblock%22)%3E"
|
|
7032
6976
|
}
|
|
7033
6977
|
],
|
|
7034
6978
|
"description": "Default snippets for Docusaurus SSG.",
|
|
@@ -7040,38 +6984,7 @@
|
|
|
7040
6984
|
"type": "boolean"
|
|
7041
6985
|
},
|
|
7042
6986
|
{
|
|
7043
|
-
"
|
|
7044
|
-
"properties": {
|
|
7045
|
-
"exclude": {
|
|
7046
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7047
|
-
"items": {
|
|
7048
|
-
"enum": [
|
|
7049
|
-
"eleventy_liquid_raw",
|
|
7050
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
7051
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
7052
|
-
"_cc_eleventy_liquid_template"
|
|
7053
|
-
],
|
|
7054
|
-
"type": "string"
|
|
7055
|
-
},
|
|
7056
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7057
|
-
"type": "array"
|
|
7058
|
-
},
|
|
7059
|
-
"include": {
|
|
7060
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7061
|
-
"items": {
|
|
7062
|
-
"enum": [
|
|
7063
|
-
"eleventy_liquid_raw",
|
|
7064
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
7065
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
7066
|
-
"_cc_eleventy_liquid_template"
|
|
7067
|
-
],
|
|
7068
|
-
"type": "string"
|
|
7069
|
-
},
|
|
7070
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7071
|
-
"type": "array"
|
|
7072
|
-
}
|
|
7073
|
-
},
|
|
7074
|
-
"type": "object"
|
|
6987
|
+
"$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"
|
|
7075
6988
|
}
|
|
7076
6989
|
],
|
|
7077
6990
|
"description": "Default snippets for Eleventy SSG Liquid files.",
|
|
@@ -7083,40 +6996,7 @@
|
|
|
7083
6996
|
"type": "boolean"
|
|
7084
6997
|
},
|
|
7085
6998
|
{
|
|
7086
|
-
"
|
|
7087
|
-
"properties": {
|
|
7088
|
-
"exclude": {
|
|
7089
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7090
|
-
"items": {
|
|
7091
|
-
"enum": [
|
|
7092
|
-
"eleventy_nunjucks_raw",
|
|
7093
|
-
"eleventy_nunjucks_verbatim",
|
|
7094
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
7095
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
7096
|
-
"_cc_eleventy_nunjucks_template"
|
|
7097
|
-
],
|
|
7098
|
-
"type": "string"
|
|
7099
|
-
},
|
|
7100
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7101
|
-
"type": "array"
|
|
7102
|
-
},
|
|
7103
|
-
"include": {
|
|
7104
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7105
|
-
"items": {
|
|
7106
|
-
"enum": [
|
|
7107
|
-
"eleventy_nunjucks_raw",
|
|
7108
|
-
"eleventy_nunjucks_verbatim",
|
|
7109
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
7110
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
7111
|
-
"_cc_eleventy_nunjucks_template"
|
|
7112
|
-
],
|
|
7113
|
-
"type": "string"
|
|
7114
|
-
},
|
|
7115
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7116
|
-
"type": "array"
|
|
7117
|
-
}
|
|
7118
|
-
},
|
|
7119
|
-
"type": "object"
|
|
6999
|
+
"$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"
|
|
7120
7000
|
}
|
|
7121
7001
|
],
|
|
7122
7002
|
"description": "Default snippets for Eleventy SSG Nunjucks files.",
|
|
@@ -7128,60 +7008,7 @@
|
|
|
7128
7008
|
"type": "boolean"
|
|
7129
7009
|
},
|
|
7130
7010
|
{
|
|
7131
|
-
"
|
|
7132
|
-
"properties": {
|
|
7133
|
-
"exclude": {
|
|
7134
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7135
|
-
"items": {
|
|
7136
|
-
"enum": [
|
|
7137
|
-
"hugo_summary_divider",
|
|
7138
|
-
"hugo_highlight",
|
|
7139
|
-
"hugo_figure",
|
|
7140
|
-
"hugo_gist",
|
|
7141
|
-
"hugo_instagram",
|
|
7142
|
-
"hugo_param",
|
|
7143
|
-
"hugo_ref",
|
|
7144
|
-
"hugo_relref",
|
|
7145
|
-
"hugo_tweet",
|
|
7146
|
-
"hugo_vimeo",
|
|
7147
|
-
"hugo_youtube",
|
|
7148
|
-
"_cc_hugo_unknown_paired",
|
|
7149
|
-
"_cc_hugo_unknown",
|
|
7150
|
-
"_cc_hugo_unknown_paired_processed",
|
|
7151
|
-
"_cc_hugo_unknown_processed"
|
|
7152
|
-
],
|
|
7153
|
-
"type": "string"
|
|
7154
|
-
},
|
|
7155
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7156
|
-
"type": "array"
|
|
7157
|
-
},
|
|
7158
|
-
"include": {
|
|
7159
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7160
|
-
"items": {
|
|
7161
|
-
"enum": [
|
|
7162
|
-
"hugo_summary_divider",
|
|
7163
|
-
"hugo_highlight",
|
|
7164
|
-
"hugo_figure",
|
|
7165
|
-
"hugo_gist",
|
|
7166
|
-
"hugo_instagram",
|
|
7167
|
-
"hugo_param",
|
|
7168
|
-
"hugo_ref",
|
|
7169
|
-
"hugo_relref",
|
|
7170
|
-
"hugo_tweet",
|
|
7171
|
-
"hugo_vimeo",
|
|
7172
|
-
"hugo_youtube",
|
|
7173
|
-
"_cc_hugo_unknown_paired",
|
|
7174
|
-
"_cc_hugo_unknown",
|
|
7175
|
-
"_cc_hugo_unknown_paired_processed",
|
|
7176
|
-
"_cc_hugo_unknown_processed"
|
|
7177
|
-
],
|
|
7178
|
-
"type": "string"
|
|
7179
|
-
},
|
|
7180
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7181
|
-
"type": "array"
|
|
7182
|
-
}
|
|
7183
|
-
},
|
|
7184
|
-
"type": "object"
|
|
7011
|
+
"$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"
|
|
7185
7012
|
}
|
|
7186
7013
|
],
|
|
7187
7014
|
"description": "Default snippets for Hugo SSG.",
|
|
@@ -7193,44 +7020,7 @@
|
|
|
7193
7020
|
"type": "boolean"
|
|
7194
7021
|
},
|
|
7195
7022
|
{
|
|
7196
|
-
"
|
|
7197
|
-
"properties": {
|
|
7198
|
-
"exclude": {
|
|
7199
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7200
|
-
"items": {
|
|
7201
|
-
"enum": [
|
|
7202
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
7203
|
-
"_cc_jekyll_unknown_tag",
|
|
7204
|
-
"jekyll_highlight",
|
|
7205
|
-
"_cc_jekyll_template",
|
|
7206
|
-
"jekyll_raw",
|
|
7207
|
-
"jekyll_link",
|
|
7208
|
-
"jekyll_post_url"
|
|
7209
|
-
],
|
|
7210
|
-
"type": "string"
|
|
7211
|
-
},
|
|
7212
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7213
|
-
"type": "array"
|
|
7214
|
-
},
|
|
7215
|
-
"include": {
|
|
7216
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7217
|
-
"items": {
|
|
7218
|
-
"enum": [
|
|
7219
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
7220
|
-
"_cc_jekyll_unknown_tag",
|
|
7221
|
-
"jekyll_highlight",
|
|
7222
|
-
"_cc_jekyll_template",
|
|
7223
|
-
"jekyll_raw",
|
|
7224
|
-
"jekyll_link",
|
|
7225
|
-
"jekyll_post_url"
|
|
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"
|
|
7023
|
+
"$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"
|
|
7234
7024
|
}
|
|
7235
7025
|
],
|
|
7236
7026
|
"description": "Default snippets for Jekyll SSG.",
|
|
@@ -7242,42 +7032,7 @@
|
|
|
7242
7032
|
"type": "boolean"
|
|
7243
7033
|
},
|
|
7244
7034
|
{
|
|
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
|
-
"markdoc_id_annotation",
|
|
7252
|
-
"markdoc_class_annotation",
|
|
7253
|
-
"markdoc_table",
|
|
7254
|
-
"_cc_markdoc_unknown_tag",
|
|
7255
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
7256
|
-
"_cc_markdoc_unknown_template"
|
|
7257
|
-
],
|
|
7258
|
-
"type": "string"
|
|
7259
|
-
},
|
|
7260
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7261
|
-
"type": "array"
|
|
7262
|
-
},
|
|
7263
|
-
"include": {
|
|
7264
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7265
|
-
"items": {
|
|
7266
|
-
"enum": [
|
|
7267
|
-
"markdoc_id_annotation",
|
|
7268
|
-
"markdoc_class_annotation",
|
|
7269
|
-
"markdoc_table",
|
|
7270
|
-
"_cc_markdoc_unknown_tag",
|
|
7271
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
7272
|
-
"_cc_markdoc_unknown_template"
|
|
7273
|
-
],
|
|
7274
|
-
"type": "string"
|
|
7275
|
-
},
|
|
7276
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7277
|
-
"type": "array"
|
|
7278
|
-
}
|
|
7279
|
-
},
|
|
7280
|
-
"type": "object"
|
|
7035
|
+
"$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"
|
|
7281
7036
|
}
|
|
7282
7037
|
],
|
|
7283
7038
|
"description": "Default snippets for Markdoc-based content.",
|
|
@@ -7289,44 +7044,7 @@
|
|
|
7289
7044
|
"type": "boolean"
|
|
7290
7045
|
},
|
|
7291
7046
|
{
|
|
7292
|
-
"
|
|
7293
|
-
"properties": {
|
|
7294
|
-
"exclude": {
|
|
7295
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7296
|
-
"items": {
|
|
7297
|
-
"enum": [
|
|
7298
|
-
"import",
|
|
7299
|
-
"_cc_mdx_unknown_export",
|
|
7300
|
-
"_cc_mdx_unknown_export_expression",
|
|
7301
|
-
"_cc_mdx_unknown_export_default",
|
|
7302
|
-
"_cc_mdx_unknown_template",
|
|
7303
|
-
"_cc_mdx_paired_unknown",
|
|
7304
|
-
"_cc_mdx_unknown"
|
|
7305
|
-
],
|
|
7306
|
-
"type": "string"
|
|
7307
|
-
},
|
|
7308
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7309
|
-
"type": "array"
|
|
7310
|
-
},
|
|
7311
|
-
"include": {
|
|
7312
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7313
|
-
"items": {
|
|
7314
|
-
"enum": [
|
|
7315
|
-
"import",
|
|
7316
|
-
"_cc_mdx_unknown_export",
|
|
7317
|
-
"_cc_mdx_unknown_export_expression",
|
|
7318
|
-
"_cc_mdx_unknown_export_default",
|
|
7319
|
-
"_cc_mdx_unknown_template",
|
|
7320
|
-
"_cc_mdx_paired_unknown",
|
|
7321
|
-
"_cc_mdx_unknown"
|
|
7322
|
-
],
|
|
7323
|
-
"type": "string"
|
|
7324
|
-
},
|
|
7325
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7326
|
-
"type": "array"
|
|
7327
|
-
}
|
|
7328
|
-
},
|
|
7329
|
-
"type": "object"
|
|
7047
|
+
"$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"
|
|
7330
7048
|
}
|
|
7331
7049
|
],
|
|
7332
7050
|
"description": "Default snippets for MDX-based content.",
|
|
@@ -7338,74 +7056,7 @@
|
|
|
7338
7056
|
"type": "boolean"
|
|
7339
7057
|
},
|
|
7340
7058
|
{
|
|
7341
|
-
"
|
|
7342
|
-
"properties": {
|
|
7343
|
-
"exclude": {
|
|
7344
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7345
|
-
"items": {
|
|
7346
|
-
"enum": [
|
|
7347
|
-
"python_markdown_abbreviation",
|
|
7348
|
-
"python_markdown_admonition",
|
|
7349
|
-
"python_markdown_arithmatex",
|
|
7350
|
-
"python_markdown_attribute_list",
|
|
7351
|
-
"python_markdown_code_block",
|
|
7352
|
-
"python_markdown_collapsible_admonition",
|
|
7353
|
-
"python_markdown_tabs",
|
|
7354
|
-
"python_markdown_footnote",
|
|
7355
|
-
"python_markdown_footnote_marker",
|
|
7356
|
-
"python_markdown_icon",
|
|
7357
|
-
"python_markdown_image",
|
|
7358
|
-
"python_markdown_inline_arithmatex",
|
|
7359
|
-
"python_markdown_inline_code",
|
|
7360
|
-
"python_markdown_link",
|
|
7361
|
-
"python_markdown_reference_image",
|
|
7362
|
-
"python_markdown_reference_template_image",
|
|
7363
|
-
"python_markdown_reference_link",
|
|
7364
|
-
"python_markdown_reference",
|
|
7365
|
-
"python_markdown_reference_template",
|
|
7366
|
-
"python_markdown_block_snippet",
|
|
7367
|
-
"_cc_python_markdown_unknown_snippet",
|
|
7368
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
7369
|
-
],
|
|
7370
|
-
"type": "string"
|
|
7371
|
-
},
|
|
7372
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7373
|
-
"type": "array"
|
|
7374
|
-
},
|
|
7375
|
-
"include": {
|
|
7376
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7377
|
-
"items": {
|
|
7378
|
-
"enum": [
|
|
7379
|
-
"python_markdown_abbreviation",
|
|
7380
|
-
"python_markdown_admonition",
|
|
7381
|
-
"python_markdown_arithmatex",
|
|
7382
|
-
"python_markdown_attribute_list",
|
|
7383
|
-
"python_markdown_code_block",
|
|
7384
|
-
"python_markdown_collapsible_admonition",
|
|
7385
|
-
"python_markdown_tabs",
|
|
7386
|
-
"python_markdown_footnote",
|
|
7387
|
-
"python_markdown_footnote_marker",
|
|
7388
|
-
"python_markdown_icon",
|
|
7389
|
-
"python_markdown_image",
|
|
7390
|
-
"python_markdown_inline_arithmatex",
|
|
7391
|
-
"python_markdown_inline_code",
|
|
7392
|
-
"python_markdown_link",
|
|
7393
|
-
"python_markdown_reference_image",
|
|
7394
|
-
"python_markdown_reference_template_image",
|
|
7395
|
-
"python_markdown_reference_link",
|
|
7396
|
-
"python_markdown_reference",
|
|
7397
|
-
"python_markdown_reference_template",
|
|
7398
|
-
"python_markdown_block_snippet",
|
|
7399
|
-
"_cc_python_markdown_unknown_snippet",
|
|
7400
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
7401
|
-
],
|
|
7402
|
-
"type": "string"
|
|
7403
|
-
},
|
|
7404
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7405
|
-
"type": "array"
|
|
7406
|
-
}
|
|
7407
|
-
},
|
|
7408
|
-
"type": "object"
|
|
7059
|
+
"$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"
|
|
7409
7060
|
}
|
|
7410
7061
|
],
|
|
7411
7062
|
"description": "Default snippets for content using Python markdown extensions.",
|
|
@@ -7484,37 +7135,14 @@
|
|
|
7484
7135
|
"type": "number"
|
|
7485
7136
|
},
|
|
7486
7137
|
"theme": {
|
|
7138
|
+
"$ref": "#/definitions/Theme",
|
|
7487
7139
|
"default": "monokai",
|
|
7488
7140
|
"description": "Changes the color scheme for syntax highlighting in the editor.",
|
|
7489
|
-
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
7490
|
-
"type": "string"
|
|
7141
|
+
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
7491
7142
|
}
|
|
7492
7143
|
},
|
|
7493
7144
|
"type": "object"
|
|
7494
7145
|
},
|
|
7495
|
-
"SsgKey": {
|
|
7496
|
-
"enum": [
|
|
7497
|
-
"hugo",
|
|
7498
|
-
"jekyll",
|
|
7499
|
-
"eleventy",
|
|
7500
|
-
"astro",
|
|
7501
|
-
"lume",
|
|
7502
|
-
"mkdocs",
|
|
7503
|
-
"nextjs",
|
|
7504
|
-
"sveltekit",
|
|
7505
|
-
"bridgetown",
|
|
7506
|
-
"docusaurus",
|
|
7507
|
-
"gatsby",
|
|
7508
|
-
"hexo",
|
|
7509
|
-
"nuxtjs",
|
|
7510
|
-
"sphinx",
|
|
7511
|
-
"static",
|
|
7512
|
-
"other",
|
|
7513
|
-
"legacy",
|
|
7514
|
-
"unknown"
|
|
7515
|
-
],
|
|
7516
|
-
"type": "string"
|
|
7517
|
-
},
|
|
7518
7146
|
"Structure": {
|
|
7519
7147
|
"additionalProperties": false,
|
|
7520
7148
|
"properties": {
|
|
@@ -8008,6 +7636,49 @@
|
|
|
8008
7636
|
},
|
|
8009
7637
|
"type": "object"
|
|
8010
7638
|
},
|
|
7639
|
+
"Theme": {
|
|
7640
|
+
"enum": [
|
|
7641
|
+
"ambiance",
|
|
7642
|
+
"chaos",
|
|
7643
|
+
"chrome",
|
|
7644
|
+
"clouds",
|
|
7645
|
+
"clouds_midnight",
|
|
7646
|
+
"cobalt",
|
|
7647
|
+
"crimson_editor",
|
|
7648
|
+
"dawn",
|
|
7649
|
+
"dracula",
|
|
7650
|
+
"dreamweaver",
|
|
7651
|
+
"eclipse",
|
|
7652
|
+
"github",
|
|
7653
|
+
"gob",
|
|
7654
|
+
"gruvbox",
|
|
7655
|
+
"idle_fingers",
|
|
7656
|
+
"iplastic",
|
|
7657
|
+
"katzenmilch",
|
|
7658
|
+
"kr_theme",
|
|
7659
|
+
"kuroir",
|
|
7660
|
+
"merbivore",
|
|
7661
|
+
"merbivore_soft",
|
|
7662
|
+
"mono_industrial",
|
|
7663
|
+
"monokai",
|
|
7664
|
+
"nord_dark",
|
|
7665
|
+
"pastel_on_dark",
|
|
7666
|
+
"solarized_dark",
|
|
7667
|
+
"solarized_light",
|
|
7668
|
+
"sqlserver",
|
|
7669
|
+
"terminal",
|
|
7670
|
+
"textmate",
|
|
7671
|
+
"tomorrow",
|
|
7672
|
+
"tomorrow_night",
|
|
7673
|
+
"tomorrow_night_blue",
|
|
7674
|
+
"tomorrow_night_bright",
|
|
7675
|
+
"tomorrow_night_eighties",
|
|
7676
|
+
"twilight",
|
|
7677
|
+
"vibrant_ink",
|
|
7678
|
+
"xcode"
|
|
7679
|
+
],
|
|
7680
|
+
"type": "string"
|
|
7681
|
+
},
|
|
8011
7682
|
"Timezone": {
|
|
8012
7683
|
"enum": [
|
|
8013
7684
|
"Africa/Abidjan",
|