@cloudcannon/configuration-types 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/build/cloudcannon-config-eleventy.json +1122 -1425
- package/build/cloudcannon-config-hugo.json +720 -1029
- package/build/cloudcannon-config-jekyll.json +923 -1231
- package/build/{cloudcannon-config-default.json → cloudcannon-config-reader.json} +1180 -1509
- package/build/cloudcannon-config.json +939 -2630
- package/package.json +6 -6
- package/src/build-coupled.d.ts +181 -0
- package/src/configuration.d.ts +1594 -0
- package/src/index.d.ts +7 -1702
|
@@ -157,6 +157,16 @@
|
|
|
157
157
|
},
|
|
158
158
|
"type": "object"
|
|
159
159
|
},
|
|
160
|
+
"AttributeListPosition": {
|
|
161
|
+
"enum": [
|
|
162
|
+
"none",
|
|
163
|
+
"right",
|
|
164
|
+
"space right",
|
|
165
|
+
"below",
|
|
166
|
+
"newline below"
|
|
167
|
+
],
|
|
168
|
+
"type": "string"
|
|
169
|
+
},
|
|
160
170
|
"BaseInput": {
|
|
161
171
|
"additionalProperties": false,
|
|
162
172
|
"properties": {
|
|
@@ -289,8 +299,18 @@
|
|
|
289
299
|
"type": "string"
|
|
290
300
|
},
|
|
291
301
|
"code": {
|
|
292
|
-
"description": "Enables
|
|
293
|
-
"markdownDescription": "Enables
|
|
302
|
+
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
303
|
+
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
304
|
+
"type": "boolean"
|
|
305
|
+
},
|
|
306
|
+
"code_block": {
|
|
307
|
+
"description": "Enables a control to insert a code block.",
|
|
308
|
+
"markdownDescription": "Enables a control to insert a code block.",
|
|
309
|
+
"type": "boolean"
|
|
310
|
+
},
|
|
311
|
+
"code_inline": {
|
|
312
|
+
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
313
|
+
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
294
314
|
"type": "boolean"
|
|
295
315
|
},
|
|
296
316
|
"copyformatting": {
|
|
@@ -298,12 +318,6 @@
|
|
|
298
318
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
299
319
|
"type": "boolean"
|
|
300
320
|
},
|
|
301
|
-
"correct_orientation": {
|
|
302
|
-
"default": true,
|
|
303
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
304
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
305
|
-
"type": "boolean"
|
|
306
|
-
},
|
|
307
321
|
"embed": {
|
|
308
322
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
309
323
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
@@ -370,7 +384,8 @@
|
|
|
370
384
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
371
385
|
"enum": [
|
|
372
386
|
"image/jpeg",
|
|
373
|
-
"image/png"
|
|
387
|
+
"image/png",
|
|
388
|
+
"image/webp"
|
|
374
389
|
],
|
|
375
390
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
376
391
|
"type": "string"
|
|
@@ -732,10 +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"
|
|
753
|
+
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
739
754
|
}
|
|
740
755
|
},
|
|
741
756
|
"type": "object"
|
|
@@ -745,16 +760,18 @@
|
|
|
745
760
|
"properties": {
|
|
746
761
|
"_array_structures": {
|
|
747
762
|
"additionalProperties": {},
|
|
748
|
-
"
|
|
749
|
-
"
|
|
763
|
+
"deprecated": "Use _structures instead.",
|
|
764
|
+
"description": "Now known as _structures.",
|
|
765
|
+
"markdownDescription": "Now known as _structures.",
|
|
750
766
|
"type": "object"
|
|
751
767
|
},
|
|
752
768
|
"_comments": {
|
|
753
769
|
"additionalProperties": {
|
|
754
770
|
"type": "string"
|
|
755
771
|
},
|
|
756
|
-
"
|
|
757
|
-
"
|
|
772
|
+
"deprecated": "Use _inputs instead.",
|
|
773
|
+
"description": "Now part of _inputs.*.comment.",
|
|
774
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
758
775
|
"type": "object"
|
|
759
776
|
},
|
|
760
777
|
"_editables": {
|
|
@@ -783,8 +800,9 @@
|
|
|
783
800
|
"additionalProperties": {},
|
|
784
801
|
"type": "object"
|
|
785
802
|
},
|
|
786
|
-
"
|
|
787
|
-
"
|
|
803
|
+
"deprecated": "Use _inputs instead.",
|
|
804
|
+
"description": "Now part of _inputs.*.options.",
|
|
805
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
788
806
|
"type": "object"
|
|
789
807
|
},
|
|
790
808
|
"_select_data": {
|
|
@@ -822,18 +840,18 @@
|
|
|
822
840
|
"type": "string"
|
|
823
841
|
},
|
|
824
842
|
"disable_add": {
|
|
825
|
-
"description": "Prevents users from adding new files in the collection file list if true
|
|
826
|
-
"markdownDescription": "Prevents users from adding new files in the collection file list if true
|
|
843
|
+
"description": "Prevents users from adding new files in the collection file list if true.",
|
|
844
|
+
"markdownDescription": "Prevents users from adding new files in the collection file list if true.",
|
|
827
845
|
"type": "boolean"
|
|
828
846
|
},
|
|
829
847
|
"disable_add_folder": {
|
|
830
|
-
"description": "Prevents users from adding new folders in the collection file list if true
|
|
831
|
-
"markdownDescription": "Prevents users from adding new folders in the collection file list if true
|
|
848
|
+
"description": "Prevents users from adding new folders in the collection file list if true.",
|
|
849
|
+
"markdownDescription": "Prevents users from adding new folders in the collection file list if true.",
|
|
832
850
|
"type": "boolean"
|
|
833
851
|
},
|
|
834
852
|
"disable_file_actions": {
|
|
835
|
-
"description": "Prevents users from renaming, moving and deleting files in the collection file list if true
|
|
836
|
-
"markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true
|
|
853
|
+
"description": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
|
|
854
|
+
"markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
|
|
837
855
|
"type": "boolean"
|
|
838
856
|
},
|
|
839
857
|
"documentation": {
|
|
@@ -841,28 +859,16 @@
|
|
|
841
859
|
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
842
860
|
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
843
861
|
},
|
|
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
862
|
"glob": {
|
|
857
863
|
"anyOf": [
|
|
858
|
-
{
|
|
859
|
-
"type": "string"
|
|
860
|
-
},
|
|
861
864
|
{
|
|
862
865
|
"items": {
|
|
863
866
|
"type": "string"
|
|
864
867
|
},
|
|
865
868
|
"type": "array"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"type": "string"
|
|
866
872
|
}
|
|
867
873
|
],
|
|
868
874
|
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
@@ -888,19 +894,6 @@
|
|
|
888
894
|
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
889
895
|
"type": "boolean"
|
|
890
896
|
},
|
|
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
897
|
"path": {
|
|
905
898
|
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
906
899
|
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
@@ -1124,20 +1117,178 @@
|
|
|
1124
1117
|
"type": "object"
|
|
1125
1118
|
},
|
|
1126
1119
|
"Configuration": {
|
|
1127
|
-
"
|
|
1128
|
-
|
|
1129
|
-
|
|
1120
|
+
"additionalProperties": false,
|
|
1121
|
+
"properties": {
|
|
1122
|
+
"_array_structures": {
|
|
1123
|
+
"additionalProperties": {},
|
|
1124
|
+
"deprecated": "Use _structures instead.",
|
|
1125
|
+
"description": "Now known as _structures.",
|
|
1126
|
+
"markdownDescription": "Now known as _structures.",
|
|
1127
|
+
"type": "object"
|
|
1130
1128
|
},
|
|
1131
|
-
{
|
|
1132
|
-
"
|
|
1129
|
+
"_comments": {
|
|
1130
|
+
"additionalProperties": {
|
|
1131
|
+
"type": "string"
|
|
1132
|
+
},
|
|
1133
|
+
"deprecated": "Use _inputs instead.",
|
|
1134
|
+
"description": "Now part of _inputs.*.comment.",
|
|
1135
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1136
|
+
"type": "object"
|
|
1133
1137
|
},
|
|
1134
|
-
{
|
|
1135
|
-
"$ref": "#/definitions/
|
|
1138
|
+
"_editables": {
|
|
1139
|
+
"$ref": "#/definitions/Editables",
|
|
1140
|
+
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
1141
|
+
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
1136
1142
|
},
|
|
1137
|
-
{
|
|
1138
|
-
"
|
|
1143
|
+
"_enabled_editors": {
|
|
1144
|
+
"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.",
|
|
1145
|
+
"items": {
|
|
1146
|
+
"$ref": "#/definitions/EditorKey"
|
|
1147
|
+
},
|
|
1148
|
+
"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.",
|
|
1149
|
+
"type": "array"
|
|
1150
|
+
},
|
|
1151
|
+
"_inputs": {
|
|
1152
|
+
"additionalProperties": {
|
|
1153
|
+
"$ref": "#/definitions/Input"
|
|
1154
|
+
},
|
|
1155
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1156
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1157
|
+
"type": "object"
|
|
1158
|
+
},
|
|
1159
|
+
"_options": {
|
|
1160
|
+
"additionalProperties": {
|
|
1161
|
+
"additionalProperties": {},
|
|
1162
|
+
"type": "object"
|
|
1163
|
+
},
|
|
1164
|
+
"deprecated": "Use _inputs instead.",
|
|
1165
|
+
"description": "Now part of _inputs.*.options.",
|
|
1166
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
1167
|
+
"type": "object"
|
|
1168
|
+
},
|
|
1169
|
+
"_select_data": {
|
|
1170
|
+
"additionalProperties": {
|
|
1171
|
+
"$ref": "#/definitions/SelectValues"
|
|
1172
|
+
},
|
|
1173
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
1174
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
1175
|
+
"type": "object"
|
|
1176
|
+
},
|
|
1177
|
+
"_snippets": {
|
|
1178
|
+
"additionalProperties": {
|
|
1179
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
1180
|
+
},
|
|
1181
|
+
"description": "Configuration for custom snippets.",
|
|
1182
|
+
"markdownDescription": "Configuration for custom snippets.",
|
|
1183
|
+
"type": "object"
|
|
1184
|
+
},
|
|
1185
|
+
"_snippets_definitions": {
|
|
1186
|
+
"additionalProperties": {
|
|
1187
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
1188
|
+
},
|
|
1189
|
+
"description": "Extended option used when creating more complex custom snippets.",
|
|
1190
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1191
|
+
"type": "object"
|
|
1192
|
+
},
|
|
1193
|
+
"_snippets_imports": {
|
|
1194
|
+
"$ref": "#/definitions/SnippetsImports",
|
|
1195
|
+
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
1196
|
+
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
1197
|
+
},
|
|
1198
|
+
"_snippets_templates": {
|
|
1199
|
+
"additionalProperties": {
|
|
1200
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
1201
|
+
},
|
|
1202
|
+
"description": "Extended option used when creating more complex custom snippets.",
|
|
1203
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1204
|
+
"type": "object"
|
|
1205
|
+
},
|
|
1206
|
+
"_structures": {
|
|
1207
|
+
"additionalProperties": {
|
|
1208
|
+
"$ref": "#/definitions/Structure"
|
|
1209
|
+
},
|
|
1210
|
+
"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.",
|
|
1211
|
+
"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.",
|
|
1212
|
+
"type": "object"
|
|
1213
|
+
},
|
|
1214
|
+
"base_url": {
|
|
1215
|
+
"description": "The subpath where your output files are hosted.",
|
|
1216
|
+
"markdownDescription": "The subpath where your output files are hosted.",
|
|
1217
|
+
"type": "string"
|
|
1218
|
+
},
|
|
1219
|
+
"collection_groups": {
|
|
1220
|
+
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
1221
|
+
"items": {
|
|
1222
|
+
"$ref": "#/definitions/CollectionGroup"
|
|
1223
|
+
},
|
|
1224
|
+
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
1225
|
+
"type": "array"
|
|
1226
|
+
},
|
|
1227
|
+
"collections_config": {
|
|
1228
|
+
"additionalProperties": {
|
|
1229
|
+
"$ref": "#/definitions/CollectionConfig"
|
|
1230
|
+
},
|
|
1231
|
+
"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.",
|
|
1232
|
+
"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.",
|
|
1233
|
+
"type": "object"
|
|
1234
|
+
},
|
|
1235
|
+
"commit_templates": {
|
|
1236
|
+
"description": "Templates for commit messages when saving changes.",
|
|
1237
|
+
"items": {
|
|
1238
|
+
"$ref": "#/definitions/CommitTemplate"
|
|
1239
|
+
},
|
|
1240
|
+
"markdownDescription": "Templates for commit messages when saving changes.",
|
|
1241
|
+
"type": "array"
|
|
1242
|
+
},
|
|
1243
|
+
"data_config": {
|
|
1244
|
+
"additionalProperties": {
|
|
1245
|
+
"$ref": "#/definitions/DataConfigEntry"
|
|
1246
|
+
},
|
|
1247
|
+
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1248
|
+
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1249
|
+
"type": "object"
|
|
1250
|
+
},
|
|
1251
|
+
"editor": {
|
|
1252
|
+
"$ref": "#/definitions/Editor",
|
|
1253
|
+
"description": "Contains settings for the default editor actions on your site.",
|
|
1254
|
+
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
1255
|
+
},
|
|
1256
|
+
"file_config": {
|
|
1257
|
+
"additionalProperties": {
|
|
1258
|
+
"$ref": "#/definitions/FileConfigEntry"
|
|
1259
|
+
},
|
|
1260
|
+
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1261
|
+
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1262
|
+
"type": "object"
|
|
1263
|
+
},
|
|
1264
|
+
"markdown": {
|
|
1265
|
+
"$ref": "#/definitions/MarkdownSettings",
|
|
1266
|
+
"description": "Contains settings for various Markdown engines.",
|
|
1267
|
+
"markdownDescription": "Contains settings for various Markdown engines."
|
|
1268
|
+
},
|
|
1269
|
+
"paths": {
|
|
1270
|
+
"$ref": "#/definitions/Paths",
|
|
1271
|
+
"description": "Global paths to common folders.",
|
|
1272
|
+
"markdownDescription": "Global paths to common folders."
|
|
1273
|
+
},
|
|
1274
|
+
"source": {
|
|
1275
|
+
"description": "Base path to your site source files, relative to the root folder.",
|
|
1276
|
+
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
1277
|
+
"type": "string"
|
|
1278
|
+
},
|
|
1279
|
+
"source_editor": {
|
|
1280
|
+
"$ref": "#/definitions/SourceEditor",
|
|
1281
|
+
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
1282
|
+
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
1283
|
+
},
|
|
1284
|
+
"timezone": {
|
|
1285
|
+
"$ref": "#/definitions/Timezone",
|
|
1286
|
+
"default": "Etc/UTC",
|
|
1287
|
+
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
1288
|
+
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
1139
1289
|
}
|
|
1140
|
-
|
|
1290
|
+
},
|
|
1291
|
+
"type": "object"
|
|
1141
1292
|
},
|
|
1142
1293
|
"Create": {
|
|
1143
1294
|
"additionalProperties": false,
|
|
@@ -1180,8 +1331,8 @@
|
|
|
1180
1331
|
"type": "string"
|
|
1181
1332
|
},
|
|
1182
1333
|
"publish_to": {
|
|
1183
|
-
"description": "Defines a target collection when publishing. When a file is published
|
|
1184
|
-
"markdownDescription": "Defines a target collection when publishing. When a file is published
|
|
1334
|
+
"description": "Defines a target collection when publishing. When a file is published, the target collection's create definition is used instead.",
|
|
1335
|
+
"markdownDescription": "Defines a target collection when publishing. When a file is published, the target collection's\ncreate definition is used instead.",
|
|
1185
1336
|
"type": "string"
|
|
1186
1337
|
}
|
|
1187
1338
|
},
|
|
@@ -1194,7 +1345,7 @@
|
|
|
1194
1345
|
"additionalProperties": false,
|
|
1195
1346
|
"properties": {
|
|
1196
1347
|
"parser": {
|
|
1197
|
-
"description": "Overrides
|
|
1348
|
+
"description": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
1198
1349
|
"enum": [
|
|
1199
1350
|
"csv",
|
|
1200
1351
|
"front-matter",
|
|
@@ -1203,7 +1354,7 @@
|
|
|
1203
1354
|
"toml",
|
|
1204
1355
|
"yaml"
|
|
1205
1356
|
],
|
|
1206
|
-
"markdownDescription": "Overrides
|
|
1357
|
+
"markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
1207
1358
|
"type": "string"
|
|
1208
1359
|
},
|
|
1209
1360
|
"path": {
|
|
@@ -1317,270 +1468,42 @@
|
|
|
1317
1468
|
},
|
|
1318
1469
|
"type": "object"
|
|
1319
1470
|
},
|
|
1320
|
-
"
|
|
1471
|
+
"Documentation": {
|
|
1321
1472
|
"additionalProperties": false,
|
|
1322
1473
|
"properties": {
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1325
|
-
"description": "
|
|
1326
|
-
"markdownDescription": "
|
|
1327
|
-
"type": "object"
|
|
1328
|
-
},
|
|
1329
|
-
"_comments": {
|
|
1330
|
-
"additionalProperties": {
|
|
1331
|
-
"type": "string"
|
|
1332
|
-
},
|
|
1333
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
1334
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
1335
|
-
"type": "object"
|
|
1474
|
+
"icon": {
|
|
1475
|
+
"$ref": "#/definitions/Icon",
|
|
1476
|
+
"description": "The icon displayed next to the link.",
|
|
1477
|
+
"markdownDescription": "The icon displayed next to the link."
|
|
1336
1478
|
},
|
|
1337
|
-
"
|
|
1338
|
-
"
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1479
|
+
"text": {
|
|
1480
|
+
"description": "The visible text used in the link.",
|
|
1481
|
+
"markdownDescription": "The visible text used in the link.",
|
|
1482
|
+
"type": "string"
|
|
1341
1483
|
},
|
|
1342
|
-
"
|
|
1343
|
-
"description": "
|
|
1344
|
-
"
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1484
|
+
"url": {
|
|
1485
|
+
"description": "The \"href\" value of the link.",
|
|
1486
|
+
"markdownDescription": "The \"href\" value of the link.",
|
|
1487
|
+
"type": "string"
|
|
1488
|
+
}
|
|
1489
|
+
},
|
|
1490
|
+
"required": [
|
|
1491
|
+
"url"
|
|
1492
|
+
],
|
|
1493
|
+
"type": "object"
|
|
1494
|
+
},
|
|
1495
|
+
"Editables": {
|
|
1496
|
+
"additionalProperties": false,
|
|
1497
|
+
"properties": {
|
|
1498
|
+
"block": {
|
|
1499
|
+
"$ref": "#/definitions/BlockEditable",
|
|
1500
|
+
"description": "Contains input options for block Editable Regions.",
|
|
1501
|
+
"markdownDescription": "Contains input options for block Editable Regions."
|
|
1349
1502
|
},
|
|
1350
|
-
"
|
|
1351
|
-
"
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1355
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1356
|
-
"type": "object"
|
|
1357
|
-
},
|
|
1358
|
-
"_options": {
|
|
1359
|
-
"additionalProperties": {
|
|
1360
|
-
"additionalProperties": {},
|
|
1361
|
-
"type": "object"
|
|
1362
|
-
},
|
|
1363
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1364
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1365
|
-
"type": "object"
|
|
1366
|
-
},
|
|
1367
|
-
"_select_data": {
|
|
1368
|
-
"additionalProperties": {
|
|
1369
|
-
"$ref": "#/definitions/SelectValues"
|
|
1370
|
-
},
|
|
1371
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
1372
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
1373
|
-
"type": "object"
|
|
1374
|
-
},
|
|
1375
|
-
"_snippets": {
|
|
1376
|
-
"additionalProperties": {
|
|
1377
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1378
|
-
},
|
|
1379
|
-
"description": "Configuration for custom snippets.",
|
|
1380
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
1381
|
-
"type": "object"
|
|
1382
|
-
},
|
|
1383
|
-
"_snippets_definitions": {
|
|
1384
|
-
"additionalProperties": {
|
|
1385
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1386
|
-
},
|
|
1387
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1388
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1389
|
-
"type": "object"
|
|
1390
|
-
},
|
|
1391
|
-
"_snippets_imports": {
|
|
1392
|
-
"$ref": "#/definitions/SnippetsImports",
|
|
1393
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
1394
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
1395
|
-
},
|
|
1396
|
-
"_snippets_templates": {
|
|
1397
|
-
"additionalProperties": {
|
|
1398
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1399
|
-
},
|
|
1400
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1401
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1402
|
-
"type": "object"
|
|
1403
|
-
},
|
|
1404
|
-
"_structures": {
|
|
1405
|
-
"additionalProperties": {
|
|
1406
|
-
"$ref": "#/definitions/Structure"
|
|
1407
|
-
},
|
|
1408
|
-
"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.",
|
|
1409
|
-
"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.",
|
|
1410
|
-
"type": "object"
|
|
1411
|
-
},
|
|
1412
|
-
"base_url": {
|
|
1413
|
-
"description": "The subpath where your output files are hosted.",
|
|
1414
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
1415
|
-
"type": "string"
|
|
1416
|
-
},
|
|
1417
|
-
"collection_groups": {
|
|
1418
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
1419
|
-
"items": {
|
|
1420
|
-
"$ref": "#/definitions/CollectionGroup"
|
|
1421
|
-
},
|
|
1422
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
1423
|
-
"type": "array"
|
|
1424
|
-
},
|
|
1425
|
-
"collections_config": {
|
|
1426
|
-
"additionalProperties": {
|
|
1427
|
-
"$ref": "#/definitions/CollectionConfig"
|
|
1428
|
-
},
|
|
1429
|
-
"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.",
|
|
1430
|
-
"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.",
|
|
1431
|
-
"type": "object"
|
|
1432
|
-
},
|
|
1433
|
-
"commit_templates": {
|
|
1434
|
-
"items": {
|
|
1435
|
-
"$ref": "#/definitions/CommitTemplate"
|
|
1436
|
-
},
|
|
1437
|
-
"type": "array"
|
|
1438
|
-
},
|
|
1439
|
-
"data_config": {
|
|
1440
|
-
"additionalProperties": {
|
|
1441
|
-
"$ref": "#/definitions/DataConfigEntry"
|
|
1442
|
-
},
|
|
1443
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1444
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1445
|
-
"type": "object"
|
|
1446
|
-
},
|
|
1447
|
-
"editor": {
|
|
1448
|
-
"$ref": "#/definitions/Editor",
|
|
1449
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
1450
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
1451
|
-
},
|
|
1452
|
-
"file_config": {
|
|
1453
|
-
"additionalProperties": {
|
|
1454
|
-
"$ref": "#/definitions/FileConfigEntry"
|
|
1455
|
-
},
|
|
1456
|
-
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1457
|
-
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1458
|
-
"type": "object"
|
|
1459
|
-
},
|
|
1460
|
-
"generator": {
|
|
1461
|
-
"additionalProperties": false,
|
|
1462
|
-
"description": "Contains settings for various Markdown engines.",
|
|
1463
|
-
"markdownDescription": "Contains settings for various Markdown engines.",
|
|
1464
|
-
"properties": {
|
|
1465
|
-
"metadata": {
|
|
1466
|
-
"additionalProperties": false,
|
|
1467
|
-
"description": "Settings for various Markdown engines.",
|
|
1468
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
1469
|
-
"properties": {
|
|
1470
|
-
"commonmark": {
|
|
1471
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
1472
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
1473
|
-
"type": "object"
|
|
1474
|
-
},
|
|
1475
|
-
"commonmarkghpages": {
|
|
1476
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
1477
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
1478
|
-
"type": "object"
|
|
1479
|
-
},
|
|
1480
|
-
"goldmark": {
|
|
1481
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
1482
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
1483
|
-
"type": "object"
|
|
1484
|
-
},
|
|
1485
|
-
"kramdown": {
|
|
1486
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
1487
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
1488
|
-
"type": "object"
|
|
1489
|
-
},
|
|
1490
|
-
"markdown": {
|
|
1491
|
-
"description": "The Markdown engine used on your site.",
|
|
1492
|
-
"enum": [
|
|
1493
|
-
"kramdown",
|
|
1494
|
-
"commonmark",
|
|
1495
|
-
"commonmarkghpages",
|
|
1496
|
-
"goldmark",
|
|
1497
|
-
"markdown-it"
|
|
1498
|
-
],
|
|
1499
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
1500
|
-
"type": "string"
|
|
1501
|
-
},
|
|
1502
|
-
"markdown-it": {
|
|
1503
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
1504
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
1505
|
-
"type": "object"
|
|
1506
|
-
}
|
|
1507
|
-
},
|
|
1508
|
-
"required": [
|
|
1509
|
-
"markdown"
|
|
1510
|
-
],
|
|
1511
|
-
"type": "object"
|
|
1512
|
-
}
|
|
1513
|
-
},
|
|
1514
|
-
"type": "object"
|
|
1515
|
-
},
|
|
1516
|
-
"output": {
|
|
1517
|
-
"description": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy. Defaults to the root folder.",
|
|
1518
|
-
"markdownDescription": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy.\nDefaults to the root folder.",
|
|
1519
|
-
"type": "string"
|
|
1520
|
-
},
|
|
1521
|
-
"paths": {
|
|
1522
|
-
"$ref": "#/definitions/Paths",
|
|
1523
|
-
"description": "Global paths to common folders.",
|
|
1524
|
-
"markdownDescription": "Global paths to common folders."
|
|
1525
|
-
},
|
|
1526
|
-
"source": {
|
|
1527
|
-
"description": "Base path to your site source files, relative to the root folder.",
|
|
1528
|
-
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
1529
|
-
"type": "string"
|
|
1530
|
-
},
|
|
1531
|
-
"source_editor": {
|
|
1532
|
-
"$ref": "#/definitions/SourceEditor",
|
|
1533
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
1534
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
1535
|
-
},
|
|
1536
|
-
"ssg": {
|
|
1537
|
-
"$ref": "#/definitions/SsgKey"
|
|
1538
|
-
},
|
|
1539
|
-
"timezone": {
|
|
1540
|
-
"$ref": "#/definitions/Timezone",
|
|
1541
|
-
"default": "Etc/UTC",
|
|
1542
|
-
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
1543
|
-
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
1544
|
-
}
|
|
1545
|
-
},
|
|
1546
|
-
"type": "object"
|
|
1547
|
-
},
|
|
1548
|
-
"Documentation": {
|
|
1549
|
-
"additionalProperties": false,
|
|
1550
|
-
"properties": {
|
|
1551
|
-
"icon": {
|
|
1552
|
-
"$ref": "#/definitions/Icon",
|
|
1553
|
-
"description": "The icon displayed next to the link.",
|
|
1554
|
-
"markdownDescription": "The icon displayed next to the link."
|
|
1555
|
-
},
|
|
1556
|
-
"text": {
|
|
1557
|
-
"description": "The visible text used in the link.",
|
|
1558
|
-
"markdownDescription": "The visible text used in the link.",
|
|
1559
|
-
"type": "string"
|
|
1560
|
-
},
|
|
1561
|
-
"url": {
|
|
1562
|
-
"description": "The \"href\" value of the link.",
|
|
1563
|
-
"markdownDescription": "The \"href\" value of the link.",
|
|
1564
|
-
"type": "string"
|
|
1565
|
-
}
|
|
1566
|
-
},
|
|
1567
|
-
"required": [
|
|
1568
|
-
"url"
|
|
1569
|
-
],
|
|
1570
|
-
"type": "object"
|
|
1571
|
-
},
|
|
1572
|
-
"Editables": {
|
|
1573
|
-
"additionalProperties": false,
|
|
1574
|
-
"properties": {
|
|
1575
|
-
"block": {
|
|
1576
|
-
"$ref": "#/definitions/BlockEditable",
|
|
1577
|
-
"description": "Contains input options for block Editable Regions.",
|
|
1578
|
-
"markdownDescription": "Contains input options for block Editable Regions."
|
|
1579
|
-
},
|
|
1580
|
-
"content": {
|
|
1581
|
-
"$ref": "#/definitions/BlockEditable",
|
|
1582
|
-
"description": "Contains input options for the Content Editor.",
|
|
1583
|
-
"markdownDescription": "Contains input options for the Content Editor."
|
|
1503
|
+
"content": {
|
|
1504
|
+
"$ref": "#/definitions/BlockEditable",
|
|
1505
|
+
"description": "Contains input options for the Content Editor.",
|
|
1506
|
+
"markdownDescription": "Contains input options for the Content Editor."
|
|
1584
1507
|
},
|
|
1585
1508
|
"image": {
|
|
1586
1509
|
"$ref": "#/definitions/ImageEditable",
|
|
@@ -1623,21 +1546,51 @@
|
|
|
1623
1546
|
],
|
|
1624
1547
|
"type": "string"
|
|
1625
1548
|
},
|
|
1626
|
-
"
|
|
1549
|
+
"EmptyTypeArray": {
|
|
1550
|
+
"enum": [
|
|
1551
|
+
"null",
|
|
1552
|
+
"array"
|
|
1553
|
+
],
|
|
1554
|
+
"type": "string"
|
|
1555
|
+
},
|
|
1556
|
+
"EmptyTypeNumber": {
|
|
1557
|
+
"enum": [
|
|
1558
|
+
"null",
|
|
1559
|
+
"number"
|
|
1560
|
+
],
|
|
1561
|
+
"type": "string"
|
|
1562
|
+
},
|
|
1563
|
+
"EmptyTypeObject": {
|
|
1564
|
+
"enum": [
|
|
1565
|
+
"null",
|
|
1566
|
+
"object"
|
|
1567
|
+
],
|
|
1568
|
+
"type": "string"
|
|
1569
|
+
},
|
|
1570
|
+
"EmptyTypeText": {
|
|
1571
|
+
"enum": [
|
|
1572
|
+
"null",
|
|
1573
|
+
"string"
|
|
1574
|
+
],
|
|
1575
|
+
"type": "string"
|
|
1576
|
+
},
|
|
1577
|
+
"FileConfigEntry": {
|
|
1627
1578
|
"additionalProperties": false,
|
|
1628
1579
|
"properties": {
|
|
1629
1580
|
"_array_structures": {
|
|
1630
1581
|
"additionalProperties": {},
|
|
1631
|
-
"
|
|
1632
|
-
"
|
|
1582
|
+
"deprecated": "Use _structures instead.",
|
|
1583
|
+
"description": "Now known as _structures.",
|
|
1584
|
+
"markdownDescription": "Now known as _structures.",
|
|
1633
1585
|
"type": "object"
|
|
1634
1586
|
},
|
|
1635
1587
|
"_comments": {
|
|
1636
1588
|
"additionalProperties": {
|
|
1637
1589
|
"type": "string"
|
|
1638
1590
|
},
|
|
1639
|
-
"
|
|
1640
|
-
"
|
|
1591
|
+
"deprecated": "Use _inputs instead.",
|
|
1592
|
+
"description": "Now part of _inputs.*.comment.",
|
|
1593
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1641
1594
|
"type": "object"
|
|
1642
1595
|
},
|
|
1643
1596
|
"_editables": {
|
|
@@ -1666,459 +1619,9 @@
|
|
|
1666
1619
|
"additionalProperties": {},
|
|
1667
1620
|
"type": "object"
|
|
1668
1621
|
},
|
|
1669
|
-
"
|
|
1670
|
-
"
|
|
1671
|
-
"
|
|
1672
|
-
},
|
|
1673
|
-
"_select_data": {
|
|
1674
|
-
"additionalProperties": {
|
|
1675
|
-
"$ref": "#/definitions/SelectValues"
|
|
1676
|
-
},
|
|
1677
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
1678
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
1679
|
-
"type": "object"
|
|
1680
|
-
},
|
|
1681
|
-
"_snippets": {
|
|
1682
|
-
"additionalProperties": {
|
|
1683
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1684
|
-
},
|
|
1685
|
-
"description": "Configuration for custom snippets.",
|
|
1686
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
1687
|
-
"type": "object"
|
|
1688
|
-
},
|
|
1689
|
-
"_snippets_definitions": {
|
|
1690
|
-
"additionalProperties": {
|
|
1691
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1692
|
-
},
|
|
1693
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1694
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1695
|
-
"type": "object"
|
|
1696
|
-
},
|
|
1697
|
-
"_snippets_imports": {
|
|
1698
|
-
"$ref": "#/definitions/SnippetsImports",
|
|
1699
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
1700
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
1701
|
-
},
|
|
1702
|
-
"_snippets_templates": {
|
|
1703
|
-
"additionalProperties": {
|
|
1704
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1705
|
-
},
|
|
1706
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1707
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1708
|
-
"type": "object"
|
|
1709
|
-
},
|
|
1710
|
-
"_structures": {
|
|
1711
|
-
"additionalProperties": {
|
|
1712
|
-
"$ref": "#/definitions/Structure"
|
|
1713
|
-
},
|
|
1714
|
-
"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.",
|
|
1715
|
-
"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.",
|
|
1716
|
-
"type": "object"
|
|
1717
|
-
},
|
|
1718
|
-
"base_url": {
|
|
1719
|
-
"description": "The subpath where your output files are hosted.",
|
|
1720
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
1721
|
-
"type": "string"
|
|
1722
|
-
},
|
|
1723
|
-
"collection_groups": {
|
|
1724
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
1725
|
-
"items": {
|
|
1726
|
-
"$ref": "#/definitions/CollectionGroup"
|
|
1727
|
-
},
|
|
1728
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
1729
|
-
"type": "array"
|
|
1730
|
-
},
|
|
1731
|
-
"collections_config": {
|
|
1732
|
-
"additionalProperties": {
|
|
1733
|
-
"additionalProperties": false,
|
|
1734
|
-
"properties": {
|
|
1735
|
-
"_array_structures": {
|
|
1736
|
-
"additionalProperties": {},
|
|
1737
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
1738
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
1739
|
-
"type": "object"
|
|
1740
|
-
},
|
|
1741
|
-
"_comments": {
|
|
1742
|
-
"additionalProperties": {
|
|
1743
|
-
"type": "string"
|
|
1744
|
-
},
|
|
1745
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
1746
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
1747
|
-
"type": "object"
|
|
1748
|
-
},
|
|
1749
|
-
"_editables": {
|
|
1750
|
-
"$ref": "#/definitions/Editables",
|
|
1751
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
1752
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
1753
|
-
},
|
|
1754
|
-
"_enabled_editors": {
|
|
1755
|
-
"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.",
|
|
1756
|
-
"items": {
|
|
1757
|
-
"$ref": "#/definitions/EditorKey"
|
|
1758
|
-
},
|
|
1759
|
-
"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.",
|
|
1760
|
-
"type": "array"
|
|
1761
|
-
},
|
|
1762
|
-
"_inputs": {
|
|
1763
|
-
"additionalProperties": {
|
|
1764
|
-
"$ref": "#/definitions/Input"
|
|
1765
|
-
},
|
|
1766
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1767
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1768
|
-
"type": "object"
|
|
1769
|
-
},
|
|
1770
|
-
"_options": {
|
|
1771
|
-
"additionalProperties": {
|
|
1772
|
-
"additionalProperties": {},
|
|
1773
|
-
"type": "object"
|
|
1774
|
-
},
|
|
1775
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1776
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1777
|
-
"type": "object"
|
|
1778
|
-
},
|
|
1779
|
-
"_select_data": {
|
|
1780
|
-
"additionalProperties": {
|
|
1781
|
-
"$ref": "#/definitions/SelectValues"
|
|
1782
|
-
},
|
|
1783
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
1784
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
1785
|
-
"type": "object"
|
|
1786
|
-
},
|
|
1787
|
-
"_structures": {
|
|
1788
|
-
"additionalProperties": {
|
|
1789
|
-
"$ref": "#/definitions/Structure"
|
|
1790
|
-
},
|
|
1791
|
-
"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.",
|
|
1792
|
-
"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.",
|
|
1793
|
-
"type": "object"
|
|
1794
|
-
},
|
|
1795
|
-
"add_options": {
|
|
1796
|
-
"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.",
|
|
1797
|
-
"items": {
|
|
1798
|
-
"$ref": "#/definitions/AddOption"
|
|
1799
|
-
},
|
|
1800
|
-
"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.",
|
|
1801
|
-
"type": "array"
|
|
1802
|
-
},
|
|
1803
|
-
"create": {
|
|
1804
|
-
"$ref": "#/definitions/Create",
|
|
1805
|
-
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
1806
|
-
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
1807
|
-
},
|
|
1808
|
-
"description": {
|
|
1809
|
-
"description": "Text or Markdown to show above the collection file list.",
|
|
1810
|
-
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
1811
|
-
"type": "string"
|
|
1812
|
-
},
|
|
1813
|
-
"disable_add": {
|
|
1814
|
-
"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.",
|
|
1815
|
-
"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.",
|
|
1816
|
-
"type": "boolean"
|
|
1817
|
-
},
|
|
1818
|
-
"disable_add_folder": {
|
|
1819
|
-
"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.",
|
|
1820
|
-
"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.",
|
|
1821
|
-
"type": "boolean"
|
|
1822
|
-
},
|
|
1823
|
-
"disable_file_actions": {
|
|
1824
|
-
"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.",
|
|
1825
|
-
"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.",
|
|
1826
|
-
"type": "boolean"
|
|
1827
|
-
},
|
|
1828
|
-
"documentation": {
|
|
1829
|
-
"$ref": "#/definitions/Documentation",
|
|
1830
|
-
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
1831
|
-
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
1832
|
-
},
|
|
1833
|
-
"filter": {
|
|
1834
|
-
"anyOf": [
|
|
1835
|
-
{
|
|
1836
|
-
"$ref": "#/definitions/Filter"
|
|
1837
|
-
},
|
|
1838
|
-
{
|
|
1839
|
-
"$ref": "#/definitions/FilterBase"
|
|
1840
|
-
}
|
|
1841
|
-
],
|
|
1842
|
-
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
1843
|
-
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
1844
|
-
},
|
|
1845
|
-
"glob": {
|
|
1846
|
-
"anyOf": [
|
|
1847
|
-
{
|
|
1848
|
-
"type": "string"
|
|
1849
|
-
},
|
|
1850
|
-
{
|
|
1851
|
-
"items": {
|
|
1852
|
-
"type": "string"
|
|
1853
|
-
},
|
|
1854
|
-
"type": "array"
|
|
1855
|
-
}
|
|
1856
|
-
],
|
|
1857
|
-
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
1858
|
-
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
1859
|
-
},
|
|
1860
|
-
"icon": {
|
|
1861
|
-
"$ref": "#/definitions/Icon",
|
|
1862
|
-
"description": "Sets an icon to use alongside references to this collection.",
|
|
1863
|
-
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
1864
|
-
},
|
|
1865
|
-
"name": {
|
|
1866
|
-
"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.",
|
|
1867
|
-
"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.",
|
|
1868
|
-
"type": "string"
|
|
1869
|
-
},
|
|
1870
|
-
"new_preview_url": {
|
|
1871
|
-
"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.",
|
|
1872
|
-
"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.",
|
|
1873
|
-
"type": "string"
|
|
1874
|
-
},
|
|
1875
|
-
"output": {
|
|
1876
|
-
"description": "Whether or not files in this collection produce files in the build output.",
|
|
1877
|
-
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
1878
|
-
"type": "boolean"
|
|
1879
|
-
},
|
|
1880
|
-
"path": {
|
|
1881
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
1882
|
-
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
1883
|
-
"type": "string"
|
|
1884
|
-
},
|
|
1885
|
-
"preview": {
|
|
1886
|
-
"$ref": "#/definitions/Preview",
|
|
1887
|
-
"description": "Changes the way items are previewed in the CMS.",
|
|
1888
|
-
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
1889
|
-
},
|
|
1890
|
-
"schema_key": {
|
|
1891
|
-
"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.",
|
|
1892
|
-
"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.",
|
|
1893
|
-
"type": "string"
|
|
1894
|
-
},
|
|
1895
|
-
"schemas": {
|
|
1896
|
-
"additionalProperties": {
|
|
1897
|
-
"$ref": "#/definitions/Schema"
|
|
1898
|
-
},
|
|
1899
|
-
"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.",
|
|
1900
|
-
"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.",
|
|
1901
|
-
"type": "object"
|
|
1902
|
-
},
|
|
1903
|
-
"singular_key": {
|
|
1904
|
-
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
1905
|
-
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
1906
|
-
"type": "string"
|
|
1907
|
-
},
|
|
1908
|
-
"singular_name": {
|
|
1909
|
-
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
1910
|
-
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
1911
|
-
"type": "string"
|
|
1912
|
-
},
|
|
1913
|
-
"sort": {
|
|
1914
|
-
"$ref": "#/definitions/Sort",
|
|
1915
|
-
"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.",
|
|
1916
|
-
"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."
|
|
1917
|
-
},
|
|
1918
|
-
"sort_options": {
|
|
1919
|
-
"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.",
|
|
1920
|
-
"items": {
|
|
1921
|
-
"$ref": "#/definitions/SortOption"
|
|
1922
|
-
},
|
|
1923
|
-
"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.",
|
|
1924
|
-
"type": "array"
|
|
1925
|
-
}
|
|
1926
|
-
},
|
|
1927
|
-
"type": "object"
|
|
1928
|
-
},
|
|
1929
|
-
"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.",
|
|
1930
|
-
"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.",
|
|
1931
|
-
"type": "object"
|
|
1932
|
-
},
|
|
1933
|
-
"collections_config_override": {
|
|
1934
|
-
"description": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true. Defaults to false.",
|
|
1935
|
-
"markdownDescription": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true.\nDefaults to false.",
|
|
1936
|
-
"type": "boolean"
|
|
1937
|
-
},
|
|
1938
|
-
"commit_templates": {
|
|
1939
|
-
"items": {
|
|
1940
|
-
"$ref": "#/definitions/CommitTemplate"
|
|
1941
|
-
},
|
|
1942
|
-
"type": "array"
|
|
1943
|
-
},
|
|
1944
|
-
"data_config": {
|
|
1945
|
-
"additionalProperties": {
|
|
1946
|
-
"type": "boolean"
|
|
1947
|
-
},
|
|
1948
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1949
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1950
|
-
"type": "object"
|
|
1951
|
-
},
|
|
1952
|
-
"editor": {
|
|
1953
|
-
"$ref": "#/definitions/Editor",
|
|
1954
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
1955
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
1956
|
-
},
|
|
1957
|
-
"file_config": {
|
|
1958
|
-
"additionalProperties": {
|
|
1959
|
-
"$ref": "#/definitions/FileConfigEntry"
|
|
1960
|
-
},
|
|
1961
|
-
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1962
|
-
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1963
|
-
"type": "object"
|
|
1964
|
-
},
|
|
1965
|
-
"generator": {
|
|
1966
|
-
"additionalProperties": false,
|
|
1967
|
-
"description": "Contains settings for various Markdown engines.",
|
|
1968
|
-
"markdownDescription": "Contains settings for various Markdown engines.",
|
|
1969
|
-
"properties": {
|
|
1970
|
-
"metadata": {
|
|
1971
|
-
"additionalProperties": false,
|
|
1972
|
-
"description": "Settings for various Markdown engines.",
|
|
1973
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
1974
|
-
"properties": {
|
|
1975
|
-
"commonmark": {
|
|
1976
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
1977
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
1978
|
-
"type": "object"
|
|
1979
|
-
},
|
|
1980
|
-
"commonmarkghpages": {
|
|
1981
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
1982
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
1983
|
-
"type": "object"
|
|
1984
|
-
},
|
|
1985
|
-
"goldmark": {
|
|
1986
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
1987
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
1988
|
-
"type": "object"
|
|
1989
|
-
},
|
|
1990
|
-
"kramdown": {
|
|
1991
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
1992
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
1993
|
-
"type": "object"
|
|
1994
|
-
},
|
|
1995
|
-
"markdown": {
|
|
1996
|
-
"description": "The Markdown engine used on your site.",
|
|
1997
|
-
"enum": [
|
|
1998
|
-
"kramdown",
|
|
1999
|
-
"commonmark",
|
|
2000
|
-
"commonmarkghpages",
|
|
2001
|
-
"goldmark",
|
|
2002
|
-
"markdown-it"
|
|
2003
|
-
],
|
|
2004
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
2005
|
-
"type": "string"
|
|
2006
|
-
},
|
|
2007
|
-
"markdown-it": {
|
|
2008
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
2009
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
2010
|
-
"type": "object"
|
|
2011
|
-
}
|
|
2012
|
-
},
|
|
2013
|
-
"required": [
|
|
2014
|
-
"markdown"
|
|
2015
|
-
],
|
|
2016
|
-
"type": "object"
|
|
2017
|
-
}
|
|
2018
|
-
},
|
|
2019
|
-
"type": "object"
|
|
2020
|
-
},
|
|
2021
|
-
"paths": {
|
|
2022
|
-
"$ref": "#/definitions/Paths",
|
|
2023
|
-
"description": "Global paths to common folders.",
|
|
2024
|
-
"markdownDescription": "Global paths to common folders."
|
|
2025
|
-
},
|
|
2026
|
-
"source": {
|
|
2027
|
-
"description": "Base path to your site source files, relative to the root folder.",
|
|
2028
|
-
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
2029
|
-
"type": "string"
|
|
2030
|
-
},
|
|
2031
|
-
"source_editor": {
|
|
2032
|
-
"$ref": "#/definitions/SourceEditor",
|
|
2033
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
2034
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
2035
|
-
},
|
|
2036
|
-
"ssg": {
|
|
2037
|
-
"const": "eleventy",
|
|
2038
|
-
"type": "string"
|
|
2039
|
-
},
|
|
2040
|
-
"timezone": {
|
|
2041
|
-
"$ref": "#/definitions/Timezone",
|
|
2042
|
-
"default": "Etc/UTC",
|
|
2043
|
-
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
2044
|
-
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
2045
|
-
}
|
|
2046
|
-
},
|
|
2047
|
-
"type": "object"
|
|
2048
|
-
},
|
|
2049
|
-
"EmptyTypeArray": {
|
|
2050
|
-
"enum": [
|
|
2051
|
-
"null",
|
|
2052
|
-
"array"
|
|
2053
|
-
],
|
|
2054
|
-
"type": "string"
|
|
2055
|
-
},
|
|
2056
|
-
"EmptyTypeNumber": {
|
|
2057
|
-
"enum": [
|
|
2058
|
-
"null",
|
|
2059
|
-
"number"
|
|
2060
|
-
],
|
|
2061
|
-
"type": "string"
|
|
2062
|
-
},
|
|
2063
|
-
"EmptyTypeObject": {
|
|
2064
|
-
"enum": [
|
|
2065
|
-
"null",
|
|
2066
|
-
"object"
|
|
2067
|
-
],
|
|
2068
|
-
"type": "string"
|
|
2069
|
-
},
|
|
2070
|
-
"EmptyTypeText": {
|
|
2071
|
-
"enum": [
|
|
2072
|
-
"null",
|
|
2073
|
-
"string"
|
|
2074
|
-
],
|
|
2075
|
-
"type": "string"
|
|
2076
|
-
},
|
|
2077
|
-
"FileConfigEntry": {
|
|
2078
|
-
"additionalProperties": false,
|
|
2079
|
-
"properties": {
|
|
2080
|
-
"_array_structures": {
|
|
2081
|
-
"additionalProperties": {},
|
|
2082
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
2083
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
2084
|
-
"type": "object"
|
|
2085
|
-
},
|
|
2086
|
-
"_comments": {
|
|
2087
|
-
"additionalProperties": {
|
|
2088
|
-
"type": "string"
|
|
2089
|
-
},
|
|
2090
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
2091
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
2092
|
-
"type": "object"
|
|
2093
|
-
},
|
|
2094
|
-
"_editables": {
|
|
2095
|
-
"$ref": "#/definitions/Editables",
|
|
2096
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
2097
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
2098
|
-
},
|
|
2099
|
-
"_enabled_editors": {
|
|
2100
|
-
"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.",
|
|
2101
|
-
"items": {
|
|
2102
|
-
"$ref": "#/definitions/EditorKey"
|
|
2103
|
-
},
|
|
2104
|
-
"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.",
|
|
2105
|
-
"type": "array"
|
|
2106
|
-
},
|
|
2107
|
-
"_inputs": {
|
|
2108
|
-
"additionalProperties": {
|
|
2109
|
-
"$ref": "#/definitions/Input"
|
|
2110
|
-
},
|
|
2111
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
2112
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
2113
|
-
"type": "object"
|
|
2114
|
-
},
|
|
2115
|
-
"_options": {
|
|
2116
|
-
"additionalProperties": {
|
|
2117
|
-
"additionalProperties": {},
|
|
2118
|
-
"type": "object"
|
|
2119
|
-
},
|
|
2120
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
2121
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
1622
|
+
"deprecated": "Use _inputs instead.",
|
|
1623
|
+
"description": "Now part of _inputs.*.options.",
|
|
1624
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
2122
1625
|
"type": "object"
|
|
2123
1626
|
},
|
|
2124
1627
|
"_select_data": {
|
|
@@ -2139,14 +1642,14 @@
|
|
|
2139
1642
|
},
|
|
2140
1643
|
"glob": {
|
|
2141
1644
|
"anyOf": [
|
|
2142
|
-
{
|
|
2143
|
-
"type": "string"
|
|
2144
|
-
},
|
|
2145
1645
|
{
|
|
2146
1646
|
"items": {
|
|
2147
1647
|
"type": "string"
|
|
2148
1648
|
},
|
|
2149
1649
|
"type": "array"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"type": "string"
|
|
2150
1653
|
}
|
|
2151
1654
|
],
|
|
2152
1655
|
"description": "The glob pattern(s) targeting a path to one or more files.",
|
|
@@ -2261,489 +1764,23 @@
|
|
|
2261
1764
|
"description": "Restricts which file types are available to select or upload to this input.",
|
|
2262
1765
|
"markdownDescription": "Restricts which file types are available to select or upload to this input."
|
|
2263
1766
|
},
|
|
2264
|
-
"allowed_sources": {
|
|
2265
|
-
"description": "If you have one or more DAMs connected to your site, you can use this key to list which asset sources can be uploaded to and selected from.",
|
|
2266
|
-
"items": {
|
|
2267
|
-
"type": "string"
|
|
2268
|
-
},
|
|
2269
|
-
"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.",
|
|
2270
|
-
"type": "array"
|
|
2271
|
-
},
|
|
2272
|
-
"empty_type": {
|
|
2273
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
2274
|
-
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
2275
|
-
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
2276
|
-
},
|
|
2277
|
-
"paths": {
|
|
2278
|
-
"$ref": "#/definitions/ReducedPaths",
|
|
2279
|
-
"description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
|
|
2280
|
-
"markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
|
|
2281
|
-
}
|
|
2282
|
-
},
|
|
2283
|
-
"type": "object"
|
|
2284
|
-
},
|
|
2285
|
-
"Filter": {
|
|
2286
|
-
"additionalProperties": false,
|
|
2287
|
-
"properties": {
|
|
2288
|
-
"base": {
|
|
2289
|
-
"$ref": "#/definitions/FilterBase",
|
|
2290
|
-
"description": "Defines the initial set of visible files in the collection file list. Defaults to \"all\", or \"strict\" for the auto-discovered `pages` collection in Jekyll, Hugo, and Eleventy.",
|
|
2291
|
-
"markdownDescription": "Defines the initial set of visible files in the collection file list. Defaults to \"all\", or\n\"strict\" for the auto-discovered `pages` collection in Jekyll, Hugo, and Eleventy."
|
|
2292
|
-
},
|
|
2293
|
-
"exclude": {
|
|
2294
|
-
"description": "Remove from the visible files set with `base`. Paths must be relative to the containing collection `path`.",
|
|
2295
|
-
"items": {
|
|
2296
|
-
"type": "string"
|
|
2297
|
-
},
|
|
2298
|
-
"markdownDescription": "Remove from the visible files set with `base`. Paths must be relative to the containing\ncollection `path`.",
|
|
2299
|
-
"type": "array"
|
|
2300
|
-
},
|
|
2301
|
-
"include": {
|
|
2302
|
-
"description": "Add to the visible files set with `base`. Paths must be relative to the containing collection `path`.",
|
|
2303
|
-
"items": {
|
|
2304
|
-
"type": "string"
|
|
2305
|
-
},
|
|
2306
|
-
"markdownDescription": "Add to the visible files set with `base`. Paths must be relative to the containing collection\n`path`.",
|
|
2307
|
-
"type": "array"
|
|
2308
|
-
}
|
|
2309
|
-
},
|
|
2310
|
-
"type": "object"
|
|
2311
|
-
},
|
|
2312
|
-
"FilterBase": {
|
|
2313
|
-
"enum": [
|
|
2314
|
-
"none",
|
|
2315
|
-
"all",
|
|
2316
|
-
"strict"
|
|
2317
|
-
],
|
|
2318
|
-
"type": "string"
|
|
2319
|
-
},
|
|
2320
|
-
"HugoCollectionConfig": {
|
|
2321
|
-
"additionalProperties": false,
|
|
2322
|
-
"properties": {
|
|
2323
|
-
"_array_structures": {
|
|
2324
|
-
"additionalProperties": {},
|
|
2325
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
2326
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
2327
|
-
"type": "object"
|
|
2328
|
-
},
|
|
2329
|
-
"_comments": {
|
|
2330
|
-
"additionalProperties": {
|
|
2331
|
-
"type": "string"
|
|
2332
|
-
},
|
|
2333
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
2334
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
2335
|
-
"type": "object"
|
|
2336
|
-
},
|
|
2337
|
-
"_editables": {
|
|
2338
|
-
"$ref": "#/definitions/Editables",
|
|
2339
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
2340
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
2341
|
-
},
|
|
2342
|
-
"_enabled_editors": {
|
|
2343
|
-
"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.",
|
|
2344
|
-
"items": {
|
|
2345
|
-
"$ref": "#/definitions/EditorKey"
|
|
2346
|
-
},
|
|
2347
|
-
"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.",
|
|
2348
|
-
"type": "array"
|
|
2349
|
-
},
|
|
2350
|
-
"_inputs": {
|
|
2351
|
-
"additionalProperties": {
|
|
2352
|
-
"$ref": "#/definitions/Input"
|
|
2353
|
-
},
|
|
2354
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
2355
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
2356
|
-
"type": "object"
|
|
2357
|
-
},
|
|
2358
|
-
"_options": {
|
|
2359
|
-
"additionalProperties": {
|
|
2360
|
-
"additionalProperties": {},
|
|
2361
|
-
"type": "object"
|
|
2362
|
-
},
|
|
2363
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
2364
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
2365
|
-
"type": "object"
|
|
2366
|
-
},
|
|
2367
|
-
"_select_data": {
|
|
2368
|
-
"additionalProperties": {
|
|
2369
|
-
"$ref": "#/definitions/SelectValues"
|
|
2370
|
-
},
|
|
2371
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
2372
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
2373
|
-
"type": "object"
|
|
2374
|
-
},
|
|
2375
|
-
"_structures": {
|
|
2376
|
-
"additionalProperties": {
|
|
2377
|
-
"$ref": "#/definitions/Structure"
|
|
2378
|
-
},
|
|
2379
|
-
"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.",
|
|
2380
|
-
"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.",
|
|
2381
|
-
"type": "object"
|
|
2382
|
-
},
|
|
2383
|
-
"add_options": {
|
|
2384
|
-
"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.",
|
|
2385
|
-
"items": {
|
|
2386
|
-
"$ref": "#/definitions/AddOption"
|
|
2387
|
-
},
|
|
2388
|
-
"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.",
|
|
2389
|
-
"type": "array"
|
|
2390
|
-
},
|
|
2391
|
-
"create": {
|
|
2392
|
-
"$ref": "#/definitions/Create",
|
|
2393
|
-
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
2394
|
-
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
2395
|
-
},
|
|
2396
|
-
"description": {
|
|
2397
|
-
"description": "Text or Markdown to show above the collection file list.",
|
|
2398
|
-
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
2399
|
-
"type": "string"
|
|
2400
|
-
},
|
|
2401
|
-
"disable_add": {
|
|
2402
|
-
"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.",
|
|
2403
|
-
"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.",
|
|
2404
|
-
"type": "boolean"
|
|
2405
|
-
},
|
|
2406
|
-
"disable_add_folder": {
|
|
2407
|
-
"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.",
|
|
2408
|
-
"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.",
|
|
2409
|
-
"type": "boolean"
|
|
2410
|
-
},
|
|
2411
|
-
"disable_file_actions": {
|
|
2412
|
-
"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.",
|
|
2413
|
-
"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.",
|
|
2414
|
-
"type": "boolean"
|
|
2415
|
-
},
|
|
2416
|
-
"documentation": {
|
|
2417
|
-
"$ref": "#/definitions/Documentation",
|
|
2418
|
-
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
2419
|
-
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
2420
|
-
},
|
|
2421
|
-
"filter": {
|
|
2422
|
-
"anyOf": [
|
|
2423
|
-
{
|
|
2424
|
-
"$ref": "#/definitions/Filter"
|
|
2425
|
-
},
|
|
2426
|
-
{
|
|
2427
|
-
"$ref": "#/definitions/FilterBase"
|
|
2428
|
-
}
|
|
2429
|
-
],
|
|
2430
|
-
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
2431
|
-
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
2432
|
-
},
|
|
2433
|
-
"glob": {
|
|
2434
|
-
"anyOf": [
|
|
2435
|
-
{
|
|
2436
|
-
"type": "string"
|
|
2437
|
-
},
|
|
2438
|
-
{
|
|
2439
|
-
"items": {
|
|
2440
|
-
"type": "string"
|
|
2441
|
-
},
|
|
2442
|
-
"type": "array"
|
|
2443
|
-
}
|
|
2444
|
-
],
|
|
2445
|
-
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
2446
|
-
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
2447
|
-
},
|
|
2448
|
-
"icon": {
|
|
2449
|
-
"$ref": "#/definitions/Icon",
|
|
2450
|
-
"description": "Sets an icon to use alongside references to this collection.",
|
|
2451
|
-
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
2452
|
-
},
|
|
2453
|
-
"name": {
|
|
2454
|
-
"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.",
|
|
2455
|
-
"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.",
|
|
2456
|
-
"type": "string"
|
|
2457
|
-
},
|
|
2458
|
-
"new_preview_url": {
|
|
2459
|
-
"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.",
|
|
2460
|
-
"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.",
|
|
2461
|
-
"type": "string"
|
|
2462
|
-
},
|
|
2463
|
-
"output": {
|
|
2464
|
-
"description": "Whether or not files in this collection produce files in the build output.",
|
|
2465
|
-
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
2466
|
-
"type": "boolean"
|
|
2467
|
-
},
|
|
2468
|
-
"parse_branch_index": {
|
|
2469
|
-
"description": "Controls whether branch index files (e.g. _index.md) are assigned to this collection or not. The \"pages\" collection defaults this to true, and false otherwise.",
|
|
2470
|
-
"markdownDescription": "Controls whether branch index files (e.g. _index.md) are assigned to this collection or not.\nThe \"pages\" collection defaults this to true, and false otherwise.",
|
|
2471
|
-
"type": "boolean"
|
|
2472
|
-
},
|
|
2473
|
-
"path": {
|
|
2474
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
2475
|
-
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
2476
|
-
"type": "string"
|
|
2477
|
-
},
|
|
2478
|
-
"preview": {
|
|
2479
|
-
"$ref": "#/definitions/Preview",
|
|
2480
|
-
"description": "Changes the way items are previewed in the CMS.",
|
|
2481
|
-
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
2482
|
-
},
|
|
2483
|
-
"schema_key": {
|
|
2484
|
-
"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.",
|
|
2485
|
-
"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.",
|
|
2486
|
-
"type": "string"
|
|
2487
|
-
},
|
|
2488
|
-
"schemas": {
|
|
2489
|
-
"additionalProperties": {
|
|
2490
|
-
"$ref": "#/definitions/Schema"
|
|
2491
|
-
},
|
|
2492
|
-
"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.",
|
|
2493
|
-
"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.",
|
|
2494
|
-
"type": "object"
|
|
2495
|
-
},
|
|
2496
|
-
"singular_key": {
|
|
2497
|
-
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
2498
|
-
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
2499
|
-
"type": "string"
|
|
2500
|
-
},
|
|
2501
|
-
"singular_name": {
|
|
2502
|
-
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
2503
|
-
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
2504
|
-
"type": "string"
|
|
2505
|
-
},
|
|
2506
|
-
"sort": {
|
|
2507
|
-
"$ref": "#/definitions/Sort",
|
|
2508
|
-
"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.",
|
|
2509
|
-
"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."
|
|
2510
|
-
},
|
|
2511
|
-
"sort_options": {
|
|
2512
|
-
"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.",
|
|
2513
|
-
"items": {
|
|
2514
|
-
"$ref": "#/definitions/SortOption"
|
|
2515
|
-
},
|
|
2516
|
-
"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.",
|
|
2517
|
-
"type": "array"
|
|
2518
|
-
}
|
|
2519
|
-
},
|
|
2520
|
-
"type": "object"
|
|
2521
|
-
},
|
|
2522
|
-
"HugoConfiguration": {
|
|
2523
|
-
"additionalProperties": false,
|
|
2524
|
-
"properties": {
|
|
2525
|
-
"_array_structures": {
|
|
2526
|
-
"additionalProperties": {},
|
|
2527
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
2528
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
2529
|
-
"type": "object"
|
|
2530
|
-
},
|
|
2531
|
-
"_comments": {
|
|
2532
|
-
"additionalProperties": {
|
|
2533
|
-
"type": "string"
|
|
2534
|
-
},
|
|
2535
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
2536
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
2537
|
-
"type": "object"
|
|
2538
|
-
},
|
|
2539
|
-
"_editables": {
|
|
2540
|
-
"$ref": "#/definitions/Editables",
|
|
2541
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
2542
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
2543
|
-
},
|
|
2544
|
-
"_enabled_editors": {
|
|
2545
|
-
"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.",
|
|
2546
|
-
"items": {
|
|
2547
|
-
"$ref": "#/definitions/EditorKey"
|
|
2548
|
-
},
|
|
2549
|
-
"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.",
|
|
2550
|
-
"type": "array"
|
|
2551
|
-
},
|
|
2552
|
-
"_inputs": {
|
|
2553
|
-
"additionalProperties": {
|
|
2554
|
-
"$ref": "#/definitions/Input"
|
|
2555
|
-
},
|
|
2556
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
2557
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
2558
|
-
"type": "object"
|
|
2559
|
-
},
|
|
2560
|
-
"_options": {
|
|
2561
|
-
"additionalProperties": {
|
|
2562
|
-
"additionalProperties": {},
|
|
2563
|
-
"type": "object"
|
|
2564
|
-
},
|
|
2565
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
2566
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
2567
|
-
"type": "object"
|
|
2568
|
-
},
|
|
2569
|
-
"_select_data": {
|
|
2570
|
-
"additionalProperties": {
|
|
2571
|
-
"$ref": "#/definitions/SelectValues"
|
|
2572
|
-
},
|
|
2573
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
2574
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
2575
|
-
"type": "object"
|
|
2576
|
-
},
|
|
2577
|
-
"_snippets": {
|
|
2578
|
-
"additionalProperties": {
|
|
2579
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
2580
|
-
},
|
|
2581
|
-
"description": "Configuration for custom snippets.",
|
|
2582
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
2583
|
-
"type": "object"
|
|
2584
|
-
},
|
|
2585
|
-
"_snippets_definitions": {
|
|
2586
|
-
"additionalProperties": {
|
|
2587
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
2588
|
-
},
|
|
2589
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
2590
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
2591
|
-
"type": "object"
|
|
2592
|
-
},
|
|
2593
|
-
"_snippets_imports": {
|
|
2594
|
-
"$ref": "#/definitions/SnippetsImports",
|
|
2595
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
2596
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
2597
|
-
},
|
|
2598
|
-
"_snippets_templates": {
|
|
2599
|
-
"additionalProperties": {
|
|
2600
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
2601
|
-
},
|
|
2602
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
2603
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
2604
|
-
"type": "object"
|
|
2605
|
-
},
|
|
2606
|
-
"_structures": {
|
|
2607
|
-
"additionalProperties": {
|
|
2608
|
-
"$ref": "#/definitions/Structure"
|
|
2609
|
-
},
|
|
2610
|
-
"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.",
|
|
2611
|
-
"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.",
|
|
2612
|
-
"type": "object"
|
|
2613
|
-
},
|
|
2614
|
-
"base_url": {
|
|
2615
|
-
"description": "The subpath where your output files are hosted.",
|
|
2616
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
2617
|
-
"type": "string"
|
|
2618
|
-
},
|
|
2619
|
-
"collection_groups": {
|
|
2620
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
2621
|
-
"items": {
|
|
2622
|
-
"$ref": "#/definitions/CollectionGroup"
|
|
2623
|
-
},
|
|
2624
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
2625
|
-
"type": "array"
|
|
2626
|
-
},
|
|
2627
|
-
"collections_config": {
|
|
2628
|
-
"additionalProperties": {
|
|
2629
|
-
"$ref": "#/definitions/HugoCollectionConfig"
|
|
2630
|
-
},
|
|
2631
|
-
"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.",
|
|
2632
|
-
"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.",
|
|
2633
|
-
"type": "object"
|
|
2634
|
-
},
|
|
2635
|
-
"collections_config_override": {
|
|
2636
|
-
"description": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true. Defaults to false.",
|
|
2637
|
-
"markdownDescription": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true.\nDefaults to false.",
|
|
2638
|
-
"type": "boolean"
|
|
2639
|
-
},
|
|
2640
|
-
"commit_templates": {
|
|
2641
|
-
"items": {
|
|
2642
|
-
"$ref": "#/definitions/CommitTemplate"
|
|
2643
|
-
},
|
|
2644
|
-
"type": "array"
|
|
2645
|
-
},
|
|
2646
|
-
"data_config": {
|
|
2647
|
-
"additionalProperties": {
|
|
2648
|
-
"type": "boolean"
|
|
2649
|
-
},
|
|
2650
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
2651
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
2652
|
-
"type": "object"
|
|
2653
|
-
},
|
|
2654
|
-
"editor": {
|
|
2655
|
-
"$ref": "#/definitions/Editor",
|
|
2656
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
2657
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
2658
|
-
},
|
|
2659
|
-
"file_config": {
|
|
2660
|
-
"additionalProperties": {
|
|
2661
|
-
"$ref": "#/definitions/FileConfigEntry"
|
|
2662
|
-
},
|
|
2663
|
-
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
2664
|
-
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
2665
|
-
"type": "object"
|
|
2666
|
-
},
|
|
2667
|
-
"generator": {
|
|
2668
|
-
"additionalProperties": false,
|
|
2669
|
-
"description": "Contains settings for various Markdown engines.",
|
|
2670
|
-
"markdownDescription": "Contains settings for various Markdown engines.",
|
|
2671
|
-
"properties": {
|
|
2672
|
-
"metadata": {
|
|
2673
|
-
"additionalProperties": false,
|
|
2674
|
-
"description": "Settings for various Markdown engines.",
|
|
2675
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
2676
|
-
"properties": {
|
|
2677
|
-
"commonmark": {
|
|
2678
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
2679
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
2680
|
-
"type": "object"
|
|
2681
|
-
},
|
|
2682
|
-
"commonmarkghpages": {
|
|
2683
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
2684
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
2685
|
-
"type": "object"
|
|
2686
|
-
},
|
|
2687
|
-
"goldmark": {
|
|
2688
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
2689
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
2690
|
-
"type": "object"
|
|
2691
|
-
},
|
|
2692
|
-
"kramdown": {
|
|
2693
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
2694
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
2695
|
-
"type": "object"
|
|
2696
|
-
},
|
|
2697
|
-
"markdown": {
|
|
2698
|
-
"description": "The Markdown engine used on your site.",
|
|
2699
|
-
"enum": [
|
|
2700
|
-
"kramdown",
|
|
2701
|
-
"commonmark",
|
|
2702
|
-
"commonmarkghpages",
|
|
2703
|
-
"goldmark",
|
|
2704
|
-
"markdown-it"
|
|
2705
|
-
],
|
|
2706
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
2707
|
-
"type": "string"
|
|
2708
|
-
},
|
|
2709
|
-
"markdown-it": {
|
|
2710
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
2711
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
2712
|
-
"type": "object"
|
|
2713
|
-
}
|
|
2714
|
-
},
|
|
2715
|
-
"required": [
|
|
2716
|
-
"markdown"
|
|
2717
|
-
],
|
|
2718
|
-
"type": "object"
|
|
2719
|
-
}
|
|
2720
|
-
},
|
|
2721
|
-
"type": "object"
|
|
2722
|
-
},
|
|
2723
|
-
"paths": {
|
|
2724
|
-
"$ref": "#/definitions/Paths",
|
|
2725
|
-
"description": "Global paths to common folders.",
|
|
2726
|
-
"markdownDescription": "Global paths to common folders."
|
|
2727
|
-
},
|
|
2728
|
-
"source": {
|
|
2729
|
-
"description": "Base path to your site source files, relative to the root folder.",
|
|
2730
|
-
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
2731
|
-
"type": "string"
|
|
2732
|
-
},
|
|
2733
|
-
"source_editor": {
|
|
2734
|
-
"$ref": "#/definitions/SourceEditor",
|
|
2735
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
2736
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
1767
|
+
"allowed_sources": {
|
|
1768
|
+
"description": "If you have one or more DAMs connected to your site, you can use this key to list which asset sources can be uploaded to and selected from.",
|
|
1769
|
+
"items": {
|
|
1770
|
+
"type": "string"
|
|
1771
|
+
},
|
|
1772
|
+
"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.",
|
|
1773
|
+
"type": "array"
|
|
2737
1774
|
},
|
|
2738
|
-
"
|
|
2739
|
-
"
|
|
2740
|
-
"
|
|
1775
|
+
"empty_type": {
|
|
1776
|
+
"$ref": "#/definitions/EmptyTypeText",
|
|
1777
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1778
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
2741
1779
|
},
|
|
2742
|
-
"
|
|
2743
|
-
"$ref": "#/definitions/
|
|
2744
|
-
"
|
|
2745
|
-
"
|
|
2746
|
-
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
1780
|
+
"paths": {
|
|
1781
|
+
"$ref": "#/definitions/ReducedPaths",
|
|
1782
|
+
"description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
|
|
1783
|
+
"markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
|
|
2747
1784
|
}
|
|
2748
1785
|
},
|
|
2749
1786
|
"type": "object"
|
|
@@ -4887,12 +3924,6 @@
|
|
|
4887
3924
|
"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.",
|
|
4888
3925
|
"type": "array"
|
|
4889
3926
|
},
|
|
4890
|
-
"correct_orientation": {
|
|
4891
|
-
"default": true,
|
|
4892
|
-
"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.",
|
|
4893
|
-
"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.",
|
|
4894
|
-
"type": "boolean"
|
|
4895
|
-
},
|
|
4896
3927
|
"expandable": {
|
|
4897
3928
|
"default": false,
|
|
4898
3929
|
"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.",
|
|
@@ -4914,7 +3945,8 @@
|
|
|
4914
3945
|
"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.",
|
|
4915
3946
|
"enum": [
|
|
4916
3947
|
"image/jpeg",
|
|
4917
|
-
"image/png"
|
|
3948
|
+
"image/png",
|
|
3949
|
+
"image/webp"
|
|
4918
3950
|
],
|
|
4919
3951
|
"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.",
|
|
4920
3952
|
"type": "string"
|
|
@@ -5082,12 +4114,6 @@
|
|
|
5082
4114
|
"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.",
|
|
5083
4115
|
"type": "array"
|
|
5084
4116
|
},
|
|
5085
|
-
"correct_orientation": {
|
|
5086
|
-
"default": true,
|
|
5087
|
-
"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.",
|
|
5088
|
-
"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.",
|
|
5089
|
-
"type": "boolean"
|
|
5090
|
-
},
|
|
5091
4117
|
"empty_type": {
|
|
5092
4118
|
"$ref": "#/definitions/EmptyTypeText",
|
|
5093
4119
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
@@ -5114,7 +4140,8 @@
|
|
|
5114
4140
|
"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.",
|
|
5115
4141
|
"enum": [
|
|
5116
4142
|
"image/jpeg",
|
|
5117
|
-
"image/png"
|
|
4143
|
+
"image/png",
|
|
4144
|
+
"image/webp"
|
|
5118
4145
|
],
|
|
5119
4146
|
"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.",
|
|
5120
4147
|
"type": "string"
|
|
@@ -5274,438 +4301,173 @@
|
|
|
5274
4301
|
],
|
|
5275
4302
|
"type": "string"
|
|
5276
4303
|
},
|
|
5277
|
-
"
|
|
4304
|
+
"LinkEditable": {
|
|
5278
4305
|
"additionalProperties": false,
|
|
5279
4306
|
"properties": {
|
|
5280
|
-
"
|
|
5281
|
-
"
|
|
5282
|
-
"description": "
|
|
5283
|
-
"markdownDescription": "
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
"
|
|
5293
|
-
},
|
|
5294
|
-
"_editables": {
|
|
5295
|
-
"$ref": "#/definitions/Editables",
|
|
5296
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
5297
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
5298
|
-
},
|
|
5299
|
-
"_enabled_editors": {
|
|
5300
|
-
"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.",
|
|
5301
|
-
"items": {
|
|
5302
|
-
"$ref": "#/definitions/EditorKey"
|
|
5303
|
-
},
|
|
5304
|
-
"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.",
|
|
5305
|
-
"type": "array"
|
|
5306
|
-
},
|
|
5307
|
-
"_inputs": {
|
|
5308
|
-
"additionalProperties": {
|
|
5309
|
-
"$ref": "#/definitions/Input"
|
|
5310
|
-
},
|
|
5311
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5312
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5313
|
-
"type": "object"
|
|
5314
|
-
},
|
|
5315
|
-
"_options": {
|
|
5316
|
-
"additionalProperties": {
|
|
5317
|
-
"additionalProperties": {},
|
|
5318
|
-
"type": "object"
|
|
5319
|
-
},
|
|
5320
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
5321
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
5322
|
-
"type": "object"
|
|
5323
|
-
},
|
|
5324
|
-
"_select_data": {
|
|
5325
|
-
"additionalProperties": {
|
|
5326
|
-
"$ref": "#/definitions/SelectValues"
|
|
5327
|
-
},
|
|
5328
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
5329
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
5330
|
-
"type": "object"
|
|
5331
|
-
},
|
|
5332
|
-
"_snippets": {
|
|
5333
|
-
"additionalProperties": {
|
|
5334
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
5335
|
-
},
|
|
5336
|
-
"description": "Configuration for custom snippets.",
|
|
5337
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
5338
|
-
"type": "object"
|
|
5339
|
-
},
|
|
5340
|
-
"_snippets_definitions": {
|
|
5341
|
-
"additionalProperties": {
|
|
5342
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
5343
|
-
},
|
|
5344
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
5345
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
5346
|
-
"type": "object"
|
|
5347
|
-
},
|
|
5348
|
-
"_snippets_imports": {
|
|
5349
|
-
"$ref": "#/definitions/SnippetsImports",
|
|
5350
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
5351
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
5352
|
-
},
|
|
5353
|
-
"_snippets_templates": {
|
|
5354
|
-
"additionalProperties": {
|
|
5355
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
5356
|
-
},
|
|
5357
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
5358
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
5359
|
-
"type": "object"
|
|
5360
|
-
},
|
|
5361
|
-
"_structures": {
|
|
5362
|
-
"additionalProperties": {
|
|
5363
|
-
"$ref": "#/definitions/Structure"
|
|
5364
|
-
},
|
|
5365
|
-
"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.",
|
|
5366
|
-
"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.",
|
|
5367
|
-
"type": "object"
|
|
5368
|
-
},
|
|
5369
|
-
"base_url": {
|
|
5370
|
-
"description": "The subpath where your output files are hosted.",
|
|
5371
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
5372
|
-
"type": "string"
|
|
5373
|
-
},
|
|
5374
|
-
"collection_groups": {
|
|
5375
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
5376
|
-
"items": {
|
|
5377
|
-
"$ref": "#/definitions/CollectionGroup"
|
|
5378
|
-
},
|
|
5379
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
5380
|
-
"type": "array"
|
|
5381
|
-
},
|
|
5382
|
-
"collections_config": {
|
|
5383
|
-
"additionalProperties": {
|
|
5384
|
-
"additionalProperties": false,
|
|
5385
|
-
"properties": {
|
|
5386
|
-
"_array_structures": {
|
|
5387
|
-
"additionalProperties": {},
|
|
5388
|
-
"description": "[DEPRECATED] Now known as _structures.",
|
|
5389
|
-
"markdownDescription": "[DEPRECATED] Now known as _structures.",
|
|
5390
|
-
"type": "object"
|
|
5391
|
-
},
|
|
5392
|
-
"_comments": {
|
|
5393
|
-
"additionalProperties": {
|
|
5394
|
-
"type": "string"
|
|
5395
|
-
},
|
|
5396
|
-
"description": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
5397
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
|
|
5398
|
-
"type": "object"
|
|
5399
|
-
},
|
|
5400
|
-
"_editables": {
|
|
5401
|
-
"$ref": "#/definitions/Editables",
|
|
5402
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
5403
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
5404
|
-
},
|
|
5405
|
-
"_enabled_editors": {
|
|
5406
|
-
"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.",
|
|
5407
|
-
"items": {
|
|
5408
|
-
"$ref": "#/definitions/EditorKey"
|
|
5409
|
-
},
|
|
5410
|
-
"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.",
|
|
5411
|
-
"type": "array"
|
|
5412
|
-
},
|
|
5413
|
-
"_inputs": {
|
|
5414
|
-
"additionalProperties": {
|
|
5415
|
-
"$ref": "#/definitions/Input"
|
|
5416
|
-
},
|
|
5417
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5418
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
5419
|
-
"type": "object"
|
|
5420
|
-
},
|
|
5421
|
-
"_options": {
|
|
5422
|
-
"additionalProperties": {
|
|
5423
|
-
"additionalProperties": {},
|
|
5424
|
-
"type": "object"
|
|
5425
|
-
},
|
|
5426
|
-
"description": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
5427
|
-
"markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
|
|
5428
|
-
"type": "object"
|
|
5429
|
-
},
|
|
5430
|
-
"_select_data": {
|
|
5431
|
-
"additionalProperties": {
|
|
5432
|
-
"$ref": "#/definitions/SelectValues"
|
|
5433
|
-
},
|
|
5434
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
5435
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
5436
|
-
"type": "object"
|
|
5437
|
-
},
|
|
5438
|
-
"_structures": {
|
|
5439
|
-
"additionalProperties": {
|
|
5440
|
-
"$ref": "#/definitions/Structure"
|
|
5441
|
-
},
|
|
5442
|
-
"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.",
|
|
5443
|
-
"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.",
|
|
5444
|
-
"type": "object"
|
|
5445
|
-
},
|
|
5446
|
-
"add_options": {
|
|
5447
|
-
"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.",
|
|
5448
|
-
"items": {
|
|
5449
|
-
"$ref": "#/definitions/AddOption"
|
|
5450
|
-
},
|
|
5451
|
-
"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.",
|
|
5452
|
-
"type": "array"
|
|
5453
|
-
},
|
|
5454
|
-
"create": {
|
|
5455
|
-
"$ref": "#/definitions/Create",
|
|
5456
|
-
"description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
|
|
5457
|
-
"markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
|
|
5458
|
-
},
|
|
5459
|
-
"description": {
|
|
5460
|
-
"description": "Text or Markdown to show above the collection file list.",
|
|
5461
|
-
"markdownDescription": "Text or Markdown to show above the collection file list.",
|
|
5462
|
-
"type": "string"
|
|
5463
|
-
},
|
|
5464
|
-
"disable_add": {
|
|
5465
|
-
"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.",
|
|
5466
|
-
"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.",
|
|
5467
|
-
"type": "boolean"
|
|
5468
|
-
},
|
|
5469
|
-
"disable_add_folder": {
|
|
5470
|
-
"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.",
|
|
5471
|
-
"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.",
|
|
5472
|
-
"type": "boolean"
|
|
5473
|
-
},
|
|
5474
|
-
"disable_file_actions": {
|
|
5475
|
-
"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.",
|
|
5476
|
-
"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.",
|
|
5477
|
-
"type": "boolean"
|
|
5478
|
-
},
|
|
5479
|
-
"documentation": {
|
|
5480
|
-
"$ref": "#/definitions/Documentation",
|
|
5481
|
-
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
5482
|
-
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
5483
|
-
},
|
|
5484
|
-
"filter": {
|
|
5485
|
-
"anyOf": [
|
|
5486
|
-
{
|
|
5487
|
-
"$ref": "#/definitions/Filter"
|
|
5488
|
-
},
|
|
5489
|
-
{
|
|
5490
|
-
"$ref": "#/definitions/FilterBase"
|
|
5491
|
-
}
|
|
5492
|
-
],
|
|
5493
|
-
"description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
|
|
5494
|
-
"markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
|
|
5495
|
-
},
|
|
5496
|
-
"glob": {
|
|
5497
|
-
"anyOf": [
|
|
5498
|
-
{
|
|
5499
|
-
"type": "string"
|
|
5500
|
-
},
|
|
5501
|
-
{
|
|
5502
|
-
"items": {
|
|
5503
|
-
"type": "string"
|
|
5504
|
-
},
|
|
5505
|
-
"type": "array"
|
|
5506
|
-
}
|
|
5507
|
-
],
|
|
5508
|
-
"description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
|
|
5509
|
-
"markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
|
|
5510
|
-
},
|
|
5511
|
-
"icon": {
|
|
5512
|
-
"$ref": "#/definitions/Icon",
|
|
5513
|
-
"description": "Sets an icon to use alongside references to this collection.",
|
|
5514
|
-
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
5515
|
-
},
|
|
5516
|
-
"name": {
|
|
5517
|
-
"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.",
|
|
5518
|
-
"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.",
|
|
5519
|
-
"type": "string"
|
|
5520
|
-
},
|
|
5521
|
-
"new_preview_url": {
|
|
5522
|
-
"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.",
|
|
5523
|
-
"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.",
|
|
5524
|
-
"type": "string"
|
|
5525
|
-
},
|
|
5526
|
-
"output": {
|
|
5527
|
-
"description": "Whether or not files in this collection produce files in the build output.",
|
|
5528
|
-
"markdownDescription": "Whether or not files in this collection produce files in the build output.",
|
|
5529
|
-
"type": "boolean"
|
|
5530
|
-
},
|
|
5531
|
-
"path": {
|
|
5532
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
5533
|
-
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
|
|
5534
|
-
"type": "string"
|
|
5535
|
-
},
|
|
5536
|
-
"preview": {
|
|
5537
|
-
"$ref": "#/definitions/Preview",
|
|
5538
|
-
"description": "Changes the way items are previewed in the CMS.",
|
|
5539
|
-
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
5540
|
-
},
|
|
5541
|
-
"schema_key": {
|
|
5542
|
-
"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.",
|
|
5543
|
-
"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.",
|
|
5544
|
-
"type": "string"
|
|
5545
|
-
},
|
|
5546
|
-
"schemas": {
|
|
5547
|
-
"additionalProperties": {
|
|
5548
|
-
"$ref": "#/definitions/Schema"
|
|
5549
|
-
},
|
|
5550
|
-
"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.",
|
|
5551
|
-
"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.",
|
|
5552
|
-
"type": "object"
|
|
5553
|
-
},
|
|
5554
|
-
"singular_key": {
|
|
5555
|
-
"description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
|
|
5556
|
-
"markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
|
|
5557
|
-
"type": "string"
|
|
5558
|
-
},
|
|
5559
|
-
"singular_name": {
|
|
5560
|
-
"description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
|
|
5561
|
-
"markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
|
|
5562
|
-
"type": "string"
|
|
5563
|
-
},
|
|
5564
|
-
"sort": {
|
|
5565
|
-
"$ref": "#/definitions/Sort",
|
|
5566
|
-
"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.",
|
|
5567
|
-
"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."
|
|
5568
|
-
},
|
|
5569
|
-
"sort_options": {
|
|
5570
|
-
"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.",
|
|
5571
|
-
"items": {
|
|
5572
|
-
"$ref": "#/definitions/SortOption"
|
|
5573
|
-
},
|
|
5574
|
-
"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.",
|
|
5575
|
-
"type": "array"
|
|
5576
|
-
}
|
|
5577
|
-
},
|
|
5578
|
-
"type": "object"
|
|
5579
|
-
},
|
|
5580
|
-
"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.",
|
|
5581
|
-
"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.",
|
|
5582
|
-
"type": "object"
|
|
5583
|
-
},
|
|
5584
|
-
"collections_config_override": {
|
|
5585
|
-
"description": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true. Defaults to false.",
|
|
5586
|
-
"markdownDescription": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true.\nDefaults to false.",
|
|
5587
|
-
"type": "boolean"
|
|
5588
|
-
},
|
|
5589
|
-
"commit_templates": {
|
|
5590
|
-
"items": {
|
|
5591
|
-
"$ref": "#/definitions/CommitTemplate"
|
|
5592
|
-
},
|
|
5593
|
-
"type": "array"
|
|
5594
|
-
},
|
|
5595
|
-
"data_config": {
|
|
5596
|
-
"additionalProperties": {
|
|
5597
|
-
"type": "boolean"
|
|
5598
|
-
},
|
|
5599
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
5600
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
5601
|
-
"type": "object"
|
|
5602
|
-
},
|
|
5603
|
-
"editor": {
|
|
5604
|
-
"$ref": "#/definitions/Editor",
|
|
5605
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
5606
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
5607
|
-
},
|
|
5608
|
-
"file_config": {
|
|
5609
|
-
"additionalProperties": {
|
|
5610
|
-
"$ref": "#/definitions/FileConfigEntry"
|
|
5611
|
-
},
|
|
5612
|
-
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
5613
|
-
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
5614
|
-
"type": "object"
|
|
4307
|
+
"paths": {
|
|
4308
|
+
"$ref": "#/definitions/ReducedPaths",
|
|
4309
|
+
"description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
|
|
4310
|
+
"markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
|
|
4311
|
+
}
|
|
4312
|
+
},
|
|
4313
|
+
"type": "object"
|
|
4314
|
+
},
|
|
4315
|
+
"MarkdownAttributeElementOptions": {
|
|
4316
|
+
"additionalProperties": false,
|
|
4317
|
+
"properties": {
|
|
4318
|
+
"block": {
|
|
4319
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5615
4320
|
},
|
|
5616
|
-
"
|
|
5617
|
-
"
|
|
5618
|
-
"description": "Contains settings for various Markdown engines.",
|
|
5619
|
-
"markdownDescription": "Contains settings for various Markdown engines.",
|
|
5620
|
-
"properties": {
|
|
5621
|
-
"metadata": {
|
|
5622
|
-
"additionalProperties": false,
|
|
5623
|
-
"description": "Settings for various Markdown engines.",
|
|
5624
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
5625
|
-
"properties": {
|
|
5626
|
-
"commonmark": {
|
|
5627
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
5628
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
5629
|
-
"type": "object"
|
|
5630
|
-
},
|
|
5631
|
-
"commonmarkghpages": {
|
|
5632
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
5633
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
5634
|
-
"type": "object"
|
|
5635
|
-
},
|
|
5636
|
-
"goldmark": {
|
|
5637
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
5638
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
5639
|
-
"type": "object"
|
|
5640
|
-
},
|
|
5641
|
-
"kramdown": {
|
|
5642
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
5643
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
5644
|
-
"type": "object"
|
|
5645
|
-
},
|
|
5646
|
-
"markdown": {
|
|
5647
|
-
"description": "The Markdown engine used on your site.",
|
|
5648
|
-
"enum": [
|
|
5649
|
-
"kramdown",
|
|
5650
|
-
"commonmark",
|
|
5651
|
-
"commonmarkghpages",
|
|
5652
|
-
"goldmark",
|
|
5653
|
-
"markdown-it"
|
|
5654
|
-
],
|
|
5655
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
5656
|
-
"type": "string"
|
|
5657
|
-
},
|
|
5658
|
-
"markdown-it": {
|
|
5659
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
5660
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
5661
|
-
"type": "object"
|
|
5662
|
-
}
|
|
5663
|
-
},
|
|
5664
|
-
"required": [
|
|
5665
|
-
"markdown"
|
|
5666
|
-
],
|
|
5667
|
-
"type": "object"
|
|
5668
|
-
}
|
|
5669
|
-
},
|
|
5670
|
-
"type": "object"
|
|
4321
|
+
"blockquote": {
|
|
4322
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5671
4323
|
},
|
|
5672
|
-
"
|
|
5673
|
-
"$ref": "#/definitions/
|
|
5674
|
-
"description": "Global paths to common folders.",
|
|
5675
|
-
"markdownDescription": "Global paths to common folders."
|
|
4324
|
+
"img": {
|
|
4325
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5676
4326
|
},
|
|
5677
|
-
"
|
|
5678
|
-
"
|
|
5679
|
-
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
5680
|
-
"type": "string"
|
|
4327
|
+
"inline": {
|
|
4328
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5681
4329
|
},
|
|
5682
|
-
"
|
|
5683
|
-
"$ref": "#/definitions/
|
|
5684
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
5685
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
4330
|
+
"li": {
|
|
4331
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5686
4332
|
},
|
|
5687
|
-
"
|
|
5688
|
-
"
|
|
5689
|
-
"type": "string"
|
|
4333
|
+
"ol": {
|
|
4334
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5690
4335
|
},
|
|
5691
|
-
"
|
|
5692
|
-
"$ref": "#/definitions/
|
|
5693
|
-
|
|
5694
|
-
|
|
5695
|
-
"
|
|
4336
|
+
"table": {
|
|
4337
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4338
|
+
},
|
|
4339
|
+
"td": {
|
|
4340
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4341
|
+
},
|
|
4342
|
+
"tr": {
|
|
4343
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4344
|
+
},
|
|
4345
|
+
"ul": {
|
|
4346
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
5696
4347
|
}
|
|
5697
4348
|
},
|
|
5698
4349
|
"type": "object"
|
|
5699
4350
|
},
|
|
5700
|
-
"
|
|
4351
|
+
"MarkdownSettings": {
|
|
5701
4352
|
"additionalProperties": false,
|
|
5702
4353
|
"properties": {
|
|
5703
|
-
"
|
|
5704
|
-
"
|
|
5705
|
-
|
|
5706
|
-
|
|
4354
|
+
"engine": {
|
|
4355
|
+
"enum": [
|
|
4356
|
+
"commonmark",
|
|
4357
|
+
"kramdown"
|
|
4358
|
+
],
|
|
4359
|
+
"type": "string"
|
|
4360
|
+
},
|
|
4361
|
+
"options": {
|
|
4362
|
+
"additionalProperties": false,
|
|
4363
|
+
"properties": {
|
|
4364
|
+
"attribute_elements": {
|
|
4365
|
+
"$ref": "#/definitions/MarkdownAttributeElementOptions",
|
|
4366
|
+
"description": "Define positioning behaviour of Markdown attributes for different elements.",
|
|
4367
|
+
"markdownDescription": "Define positioning behaviour of Markdown attributes for different elements."
|
|
4368
|
+
},
|
|
4369
|
+
"attributes": {
|
|
4370
|
+
"description": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4371
|
+
"markdownDescription": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4372
|
+
"type": "boolean"
|
|
4373
|
+
},
|
|
4374
|
+
"breaks": {
|
|
4375
|
+
"description": "Convert '\\n' in paragraphs into <br>.",
|
|
4376
|
+
"markdownDescription": "Convert '\\n' in paragraphs into <br>.",
|
|
4377
|
+
"type": "boolean"
|
|
4378
|
+
},
|
|
4379
|
+
"code_block_fences": {
|
|
4380
|
+
"description": "Determines which style of code block fences to use.",
|
|
4381
|
+
"enum": [
|
|
4382
|
+
"```",
|
|
4383
|
+
"~~~"
|
|
4384
|
+
],
|
|
4385
|
+
"markdownDescription": "Determines which style of code block fences to use.",
|
|
4386
|
+
"type": "string"
|
|
4387
|
+
},
|
|
4388
|
+
"escape_snippets_in_code_blocks": {
|
|
4389
|
+
"description": "Render snippets as plain text within code blocks.",
|
|
4390
|
+
"markdownDescription": "Render snippets as plain text within code blocks.",
|
|
4391
|
+
"type": "boolean"
|
|
4392
|
+
},
|
|
4393
|
+
"gfm": {
|
|
4394
|
+
"description": "Enable GFM mode.",
|
|
4395
|
+
"markdownDescription": "Enable GFM mode.",
|
|
4396
|
+
"type": "boolean"
|
|
4397
|
+
},
|
|
4398
|
+
"heading_ids": {
|
|
4399
|
+
"description": "Generate IDs for headings",
|
|
4400
|
+
"markdownDescription": "Generate IDs for headings",
|
|
4401
|
+
"type": "boolean"
|
|
4402
|
+
},
|
|
4403
|
+
"html": {
|
|
4404
|
+
"description": "Output HTML tags from source.",
|
|
4405
|
+
"markdownDescription": "Output HTML tags from source.",
|
|
4406
|
+
"type": "boolean"
|
|
4407
|
+
},
|
|
4408
|
+
"linkify": {
|
|
4409
|
+
"description": "Autoconvert URL-like text to links.",
|
|
4410
|
+
"markdownDescription": "Autoconvert URL-like text to links.",
|
|
4411
|
+
"type": "boolean"
|
|
4412
|
+
},
|
|
4413
|
+
"quotes": {
|
|
4414
|
+
"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).",
|
|
4415
|
+
"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).",
|
|
4416
|
+
"type": "string"
|
|
4417
|
+
},
|
|
4418
|
+
"sentence_per_line": {
|
|
4419
|
+
"description": "Add linebreaks between sentences in Markdown.",
|
|
4420
|
+
"markdownDescription": "Add linebreaks between sentences in Markdown.",
|
|
4421
|
+
"type": "boolean"
|
|
4422
|
+
},
|
|
4423
|
+
"spaced_lists": {
|
|
4424
|
+
"description": "Output lists with an extra space in Markdown.",
|
|
4425
|
+
"markdownDescription": "Output lists with an extra space in Markdown.",
|
|
4426
|
+
"type": "boolean"
|
|
4427
|
+
},
|
|
4428
|
+
"strikethrough": {
|
|
4429
|
+
"description": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4430
|
+
"markdownDescription": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4431
|
+
"type": "boolean"
|
|
4432
|
+
},
|
|
4433
|
+
"subscript": {
|
|
4434
|
+
"description": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4435
|
+
"markdownDescription": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4436
|
+
"type": "boolean"
|
|
4437
|
+
},
|
|
4438
|
+
"superscript": {
|
|
4439
|
+
"description": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4440
|
+
"markdownDescription": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4441
|
+
"type": "boolean"
|
|
4442
|
+
},
|
|
4443
|
+
"table": {
|
|
4444
|
+
"description": "Output tables in Markdown format.",
|
|
4445
|
+
"markdownDescription": "Output tables in Markdown format.",
|
|
4446
|
+
"type": "boolean"
|
|
4447
|
+
},
|
|
4448
|
+
"treat_indentation_as_code": {
|
|
4449
|
+
"description": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4450
|
+
"markdownDescription": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4451
|
+
"type": "boolean"
|
|
4452
|
+
},
|
|
4453
|
+
"typographer": {
|
|
4454
|
+
"description": "Enable some language-neutral replacement + quotes beautification.",
|
|
4455
|
+
"markdownDescription": "Enable some language-neutral replacement + quotes beautification.",
|
|
4456
|
+
"type": "boolean"
|
|
4457
|
+
},
|
|
4458
|
+
"xhtml": {
|
|
4459
|
+
"description": "Use '/' to close single tags (<br />).",
|
|
4460
|
+
"markdownDescription": "Use '/' to close single tags (<br />).",
|
|
4461
|
+
"type": "boolean"
|
|
4462
|
+
}
|
|
4463
|
+
},
|
|
4464
|
+
"type": "object"
|
|
5707
4465
|
}
|
|
5708
4466
|
},
|
|
4467
|
+
"required": [
|
|
4468
|
+
"engine",
|
|
4469
|
+
"options"
|
|
4470
|
+
],
|
|
5709
4471
|
"type": "object"
|
|
5710
4472
|
},
|
|
5711
4473
|
"MimeType": {
|
|
@@ -6683,158 +5445,22 @@
|
|
|
6683
5445
|
"additionalProperties": false,
|
|
6684
5446
|
"properties": {
|
|
6685
5447
|
"icon": {
|
|
6686
|
-
"
|
|
6687
|
-
{
|
|
6688
|
-
"items": {
|
|
6689
|
-
"anyOf": [
|
|
6690
|
-
{
|
|
6691
|
-
"additionalProperties": false,
|
|
6692
|
-
"properties": {
|
|
6693
|
-
"key": {
|
|
6694
|
-
"description": "The key used to access the value used for the preview.",
|
|
6695
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6696
|
-
"type": "string"
|
|
6697
|
-
}
|
|
6698
|
-
},
|
|
6699
|
-
"required": [
|
|
6700
|
-
"key"
|
|
6701
|
-
],
|
|
6702
|
-
"type": "object"
|
|
6703
|
-
},
|
|
6704
|
-
{
|
|
6705
|
-
"type": "string"
|
|
6706
|
-
},
|
|
6707
|
-
{
|
|
6708
|
-
"type": "boolean"
|
|
6709
|
-
}
|
|
6710
|
-
]
|
|
6711
|
-
},
|
|
6712
|
-
"type": "array"
|
|
6713
|
-
},
|
|
6714
|
-
{
|
|
6715
|
-
"type": "string"
|
|
6716
|
-
},
|
|
6717
|
-
{
|
|
6718
|
-
"type": "boolean"
|
|
6719
|
-
}
|
|
6720
|
-
],
|
|
5448
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6721
5449
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
6722
5450
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
6723
5451
|
},
|
|
6724
5452
|
"image": {
|
|
6725
|
-
"
|
|
6726
|
-
{
|
|
6727
|
-
"items": {
|
|
6728
|
-
"anyOf": [
|
|
6729
|
-
{
|
|
6730
|
-
"additionalProperties": false,
|
|
6731
|
-
"properties": {
|
|
6732
|
-
"key": {
|
|
6733
|
-
"description": "The key used to access the value used for the preview.",
|
|
6734
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6735
|
-
"type": "string"
|
|
6736
|
-
}
|
|
6737
|
-
},
|
|
6738
|
-
"required": [
|
|
6739
|
-
"key"
|
|
6740
|
-
],
|
|
6741
|
-
"type": "object"
|
|
6742
|
-
},
|
|
6743
|
-
{
|
|
6744
|
-
"type": "string"
|
|
6745
|
-
},
|
|
6746
|
-
{
|
|
6747
|
-
"type": "boolean"
|
|
6748
|
-
}
|
|
6749
|
-
]
|
|
6750
|
-
},
|
|
6751
|
-
"type": "array"
|
|
6752
|
-
},
|
|
6753
|
-
{
|
|
6754
|
-
"type": "string"
|
|
6755
|
-
},
|
|
6756
|
-
{
|
|
6757
|
-
"type": "boolean"
|
|
6758
|
-
}
|
|
6759
|
-
],
|
|
5453
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6760
5454
|
"description": "Controls the image shown per item.",
|
|
6761
5455
|
"markdownDescription": "Controls the image shown per item."
|
|
6762
5456
|
},
|
|
6763
5457
|
"subtext": {
|
|
6764
|
-
"
|
|
6765
|
-
{
|
|
6766
|
-
"items": {
|
|
6767
|
-
"anyOf": [
|
|
6768
|
-
{
|
|
6769
|
-
"additionalProperties": false,
|
|
6770
|
-
"properties": {
|
|
6771
|
-
"key": {
|
|
6772
|
-
"description": "The key used to access the value used for the preview.",
|
|
6773
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6774
|
-
"type": "string"
|
|
6775
|
-
}
|
|
6776
|
-
},
|
|
6777
|
-
"required": [
|
|
6778
|
-
"key"
|
|
6779
|
-
],
|
|
6780
|
-
"type": "object"
|
|
6781
|
-
},
|
|
6782
|
-
{
|
|
6783
|
-
"type": "string"
|
|
6784
|
-
},
|
|
6785
|
-
{
|
|
6786
|
-
"type": "boolean"
|
|
6787
|
-
}
|
|
6788
|
-
]
|
|
6789
|
-
},
|
|
6790
|
-
"type": "array"
|
|
6791
|
-
},
|
|
6792
|
-
{
|
|
6793
|
-
"type": "string"
|
|
6794
|
-
},
|
|
6795
|
-
{
|
|
6796
|
-
"type": "boolean"
|
|
6797
|
-
}
|
|
6798
|
-
],
|
|
5458
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6799
5459
|
"description": "Controls the supporting text shown per item.",
|
|
6800
5460
|
"markdownDescription": "Controls the supporting text shown per item."
|
|
6801
5461
|
},
|
|
6802
5462
|
"text": {
|
|
6803
|
-
"
|
|
6804
|
-
{
|
|
6805
|
-
"items": {
|
|
6806
|
-
"anyOf": [
|
|
6807
|
-
{
|
|
6808
|
-
"additionalProperties": false,
|
|
6809
|
-
"properties": {
|
|
6810
|
-
"key": {
|
|
6811
|
-
"description": "The key used to access the value used for the preview.",
|
|
6812
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6813
|
-
"type": "string"
|
|
6814
|
-
}
|
|
6815
|
-
},
|
|
6816
|
-
"required": [
|
|
6817
|
-
"key"
|
|
6818
|
-
],
|
|
6819
|
-
"type": "object"
|
|
6820
|
-
},
|
|
6821
|
-
{
|
|
6822
|
-
"type": "string"
|
|
6823
|
-
},
|
|
6824
|
-
{
|
|
6825
|
-
"type": "boolean"
|
|
6826
|
-
}
|
|
6827
|
-
]
|
|
6828
|
-
},
|
|
6829
|
-
"type": "array"
|
|
6830
|
-
},
|
|
6831
|
-
{
|
|
6832
|
-
"type": "string"
|
|
6833
|
-
},
|
|
6834
|
-
{
|
|
6835
|
-
"type": "boolean"
|
|
6836
|
-
}
|
|
6837
|
-
],
|
|
5463
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6838
5464
|
"description": "Controls the main text shown per item.",
|
|
6839
5465
|
"markdownDescription": "Controls the main text shown per item."
|
|
6840
5466
|
}
|
|
@@ -6845,7 +5471,6 @@
|
|
|
6845
5471
|
"additionalProperties": false,
|
|
6846
5472
|
"properties": {
|
|
6847
5473
|
"collections": {
|
|
6848
|
-
"default": "",
|
|
6849
5474
|
"description": "Parent folder of all collections.",
|
|
6850
5475
|
"markdownDescription": "Parent folder of all collections.",
|
|
6851
5476
|
"type": "string"
|
|
@@ -6915,41 +5540,7 @@
|
|
|
6915
5540
|
"markdownDescription": "Details for large image/icon preview per item."
|
|
6916
5541
|
},
|
|
6917
5542
|
"icon": {
|
|
6918
|
-
"
|
|
6919
|
-
{
|
|
6920
|
-
"items": {
|
|
6921
|
-
"anyOf": [
|
|
6922
|
-
{
|
|
6923
|
-
"additionalProperties": false,
|
|
6924
|
-
"properties": {
|
|
6925
|
-
"key": {
|
|
6926
|
-
"description": "The key used to access the value used for the preview.",
|
|
6927
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6928
|
-
"type": "string"
|
|
6929
|
-
}
|
|
6930
|
-
},
|
|
6931
|
-
"required": [
|
|
6932
|
-
"key"
|
|
6933
|
-
],
|
|
6934
|
-
"type": "object"
|
|
6935
|
-
},
|
|
6936
|
-
{
|
|
6937
|
-
"type": "string"
|
|
6938
|
-
},
|
|
6939
|
-
{
|
|
6940
|
-
"type": "boolean"
|
|
6941
|
-
}
|
|
6942
|
-
]
|
|
6943
|
-
},
|
|
6944
|
-
"type": "array"
|
|
6945
|
-
},
|
|
6946
|
-
{
|
|
6947
|
-
"type": "string"
|
|
6948
|
-
},
|
|
6949
|
-
{
|
|
6950
|
-
"type": "boolean"
|
|
6951
|
-
}
|
|
6952
|
-
],
|
|
5543
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6953
5544
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
6954
5545
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
6955
5546
|
},
|
|
@@ -6959,41 +5550,7 @@
|
|
|
6959
5550
|
"type": "string"
|
|
6960
5551
|
},
|
|
6961
5552
|
"image": {
|
|
6962
|
-
"
|
|
6963
|
-
{
|
|
6964
|
-
"items": {
|
|
6965
|
-
"anyOf": [
|
|
6966
|
-
{
|
|
6967
|
-
"additionalProperties": false,
|
|
6968
|
-
"properties": {
|
|
6969
|
-
"key": {
|
|
6970
|
-
"description": "The key used to access the value used for the preview.",
|
|
6971
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
6972
|
-
"type": "string"
|
|
6973
|
-
}
|
|
6974
|
-
},
|
|
6975
|
-
"required": [
|
|
6976
|
-
"key"
|
|
6977
|
-
],
|
|
6978
|
-
"type": "object"
|
|
6979
|
-
},
|
|
6980
|
-
{
|
|
6981
|
-
"type": "string"
|
|
6982
|
-
},
|
|
6983
|
-
{
|
|
6984
|
-
"type": "boolean"
|
|
6985
|
-
}
|
|
6986
|
-
]
|
|
6987
|
-
},
|
|
6988
|
-
"type": "array"
|
|
6989
|
-
},
|
|
6990
|
-
{
|
|
6991
|
-
"type": "string"
|
|
6992
|
-
},
|
|
6993
|
-
{
|
|
6994
|
-
"type": "boolean"
|
|
6995
|
-
}
|
|
6996
|
-
],
|
|
5553
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
6997
5554
|
"description": "Controls the image shown per item.",
|
|
6998
5555
|
"markdownDescription": "Controls the image shown per item."
|
|
6999
5556
|
},
|
|
@@ -7006,86 +5563,44 @@
|
|
|
7006
5563
|
"type": "array"
|
|
7007
5564
|
},
|
|
7008
5565
|
"subtext": {
|
|
7009
|
-
"
|
|
7010
|
-
{
|
|
7011
|
-
"items": {
|
|
7012
|
-
"anyOf": [
|
|
7013
|
-
{
|
|
7014
|
-
"additionalProperties": false,
|
|
7015
|
-
"properties": {
|
|
7016
|
-
"key": {
|
|
7017
|
-
"description": "The key used to access the value used for the preview.",
|
|
7018
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7019
|
-
"type": "string"
|
|
7020
|
-
}
|
|
7021
|
-
},
|
|
7022
|
-
"required": [
|
|
7023
|
-
"key"
|
|
7024
|
-
],
|
|
7025
|
-
"type": "object"
|
|
7026
|
-
},
|
|
7027
|
-
{
|
|
7028
|
-
"type": "string"
|
|
7029
|
-
},
|
|
7030
|
-
{
|
|
7031
|
-
"type": "boolean"
|
|
7032
|
-
}
|
|
7033
|
-
]
|
|
7034
|
-
},
|
|
7035
|
-
"type": "array"
|
|
7036
|
-
},
|
|
7037
|
-
{
|
|
7038
|
-
"type": "string"
|
|
7039
|
-
},
|
|
7040
|
-
{
|
|
7041
|
-
"type": "boolean"
|
|
7042
|
-
}
|
|
7043
|
-
],
|
|
5566
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7044
5567
|
"description": "Controls the supporting text shown per item.",
|
|
7045
5568
|
"markdownDescription": "Controls the supporting text shown per item."
|
|
7046
5569
|
},
|
|
7047
5570
|
"text": {
|
|
7048
|
-
"
|
|
7049
|
-
{
|
|
7050
|
-
"items": {
|
|
7051
|
-
"anyOf": [
|
|
7052
|
-
{
|
|
7053
|
-
"additionalProperties": false,
|
|
7054
|
-
"properties": {
|
|
7055
|
-
"key": {
|
|
7056
|
-
"description": "The key used to access the value used for the preview.",
|
|
7057
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7058
|
-
"type": "string"
|
|
7059
|
-
}
|
|
7060
|
-
},
|
|
7061
|
-
"required": [
|
|
7062
|
-
"key"
|
|
7063
|
-
],
|
|
7064
|
-
"type": "object"
|
|
7065
|
-
},
|
|
7066
|
-
{
|
|
7067
|
-
"type": "string"
|
|
7068
|
-
},
|
|
7069
|
-
{
|
|
7070
|
-
"type": "boolean"
|
|
7071
|
-
}
|
|
7072
|
-
]
|
|
7073
|
-
},
|
|
7074
|
-
"type": "array"
|
|
7075
|
-
},
|
|
7076
|
-
{
|
|
7077
|
-
"type": "string"
|
|
7078
|
-
},
|
|
7079
|
-
{
|
|
7080
|
-
"type": "boolean"
|
|
7081
|
-
}
|
|
7082
|
-
],
|
|
5571
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7083
5572
|
"description": "Controls the main text shown per item.",
|
|
7084
5573
|
"markdownDescription": "Controls the main text shown per item."
|
|
7085
5574
|
}
|
|
7086
5575
|
},
|
|
7087
5576
|
"type": "object"
|
|
7088
5577
|
},
|
|
5578
|
+
"PreviewEntry": {
|
|
5579
|
+
"anyOf": [
|
|
5580
|
+
{
|
|
5581
|
+
"items": {
|
|
5582
|
+
"anyOf": [
|
|
5583
|
+
{
|
|
5584
|
+
"$ref": "#/definitions/PreviewKeyEntry"
|
|
5585
|
+
},
|
|
5586
|
+
{
|
|
5587
|
+
"type": "string"
|
|
5588
|
+
},
|
|
5589
|
+
{
|
|
5590
|
+
"type": "boolean"
|
|
5591
|
+
}
|
|
5592
|
+
]
|
|
5593
|
+
},
|
|
5594
|
+
"type": "array"
|
|
5595
|
+
},
|
|
5596
|
+
{
|
|
5597
|
+
"type": "string"
|
|
5598
|
+
},
|
|
5599
|
+
{
|
|
5600
|
+
"type": "boolean"
|
|
5601
|
+
}
|
|
5602
|
+
]
|
|
5603
|
+
},
|
|
7089
5604
|
"PreviewGallery": {
|
|
7090
5605
|
"additionalProperties": false,
|
|
7091
5606
|
"properties": {
|
|
@@ -7101,41 +5616,7 @@
|
|
|
7101
5616
|
"type": "string"
|
|
7102
5617
|
},
|
|
7103
5618
|
"icon": {
|
|
7104
|
-
"
|
|
7105
|
-
{
|
|
7106
|
-
"items": {
|
|
7107
|
-
"anyOf": [
|
|
7108
|
-
{
|
|
7109
|
-
"additionalProperties": false,
|
|
7110
|
-
"properties": {
|
|
7111
|
-
"key": {
|
|
7112
|
-
"description": "The key used to access the value used for the preview.",
|
|
7113
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7114
|
-
"type": "string"
|
|
7115
|
-
}
|
|
7116
|
-
},
|
|
7117
|
-
"required": [
|
|
7118
|
-
"key"
|
|
7119
|
-
],
|
|
7120
|
-
"type": "object"
|
|
7121
|
-
},
|
|
7122
|
-
{
|
|
7123
|
-
"type": "string"
|
|
7124
|
-
},
|
|
7125
|
-
{
|
|
7126
|
-
"type": "boolean"
|
|
7127
|
-
}
|
|
7128
|
-
]
|
|
7129
|
-
},
|
|
7130
|
-
"type": "array"
|
|
7131
|
-
},
|
|
7132
|
-
{
|
|
7133
|
-
"type": "string"
|
|
7134
|
-
},
|
|
7135
|
-
{
|
|
7136
|
-
"type": "boolean"
|
|
7137
|
-
}
|
|
7138
|
-
],
|
|
5619
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7139
5620
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
7140
5621
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
7141
5622
|
},
|
|
@@ -7145,125 +5626,37 @@
|
|
|
7145
5626
|
"type": "string"
|
|
7146
5627
|
},
|
|
7147
5628
|
"image": {
|
|
7148
|
-
"
|
|
7149
|
-
{
|
|
7150
|
-
"items": {
|
|
7151
|
-
"anyOf": [
|
|
7152
|
-
{
|
|
7153
|
-
"additionalProperties": false,
|
|
7154
|
-
"properties": {
|
|
7155
|
-
"key": {
|
|
7156
|
-
"description": "The key used to access the value used for the preview.",
|
|
7157
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7158
|
-
"type": "string"
|
|
7159
|
-
}
|
|
7160
|
-
},
|
|
7161
|
-
"required": [
|
|
7162
|
-
"key"
|
|
7163
|
-
],
|
|
7164
|
-
"type": "object"
|
|
7165
|
-
},
|
|
7166
|
-
{
|
|
7167
|
-
"type": "string"
|
|
7168
|
-
},
|
|
7169
|
-
{
|
|
7170
|
-
"type": "boolean"
|
|
7171
|
-
}
|
|
7172
|
-
]
|
|
7173
|
-
},
|
|
7174
|
-
"type": "array"
|
|
7175
|
-
},
|
|
7176
|
-
{
|
|
7177
|
-
"type": "string"
|
|
7178
|
-
},
|
|
7179
|
-
{
|
|
7180
|
-
"type": "boolean"
|
|
7181
|
-
}
|
|
7182
|
-
],
|
|
5629
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7183
5630
|
"description": "Controls the image shown per item.",
|
|
7184
5631
|
"markdownDescription": "Controls the image shown per item."
|
|
7185
5632
|
},
|
|
7186
5633
|
"text": {
|
|
7187
|
-
"
|
|
7188
|
-
{
|
|
7189
|
-
"items": {
|
|
7190
|
-
"anyOf": [
|
|
7191
|
-
{
|
|
7192
|
-
"additionalProperties": false,
|
|
7193
|
-
"properties": {
|
|
7194
|
-
"key": {
|
|
7195
|
-
"description": "The key used to access the value used for the preview.",
|
|
7196
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7197
|
-
"type": "string"
|
|
7198
|
-
}
|
|
7199
|
-
},
|
|
7200
|
-
"required": [
|
|
7201
|
-
"key"
|
|
7202
|
-
],
|
|
7203
|
-
"type": "object"
|
|
7204
|
-
},
|
|
7205
|
-
{
|
|
7206
|
-
"type": "string"
|
|
7207
|
-
},
|
|
7208
|
-
{
|
|
7209
|
-
"type": "boolean"
|
|
7210
|
-
}
|
|
7211
|
-
]
|
|
7212
|
-
},
|
|
7213
|
-
"type": "array"
|
|
7214
|
-
},
|
|
7215
|
-
{
|
|
7216
|
-
"type": "string"
|
|
7217
|
-
},
|
|
7218
|
-
{
|
|
7219
|
-
"type": "boolean"
|
|
7220
|
-
}
|
|
7221
|
-
],
|
|
5634
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7222
5635
|
"description": "Controls the main text shown per item.",
|
|
7223
5636
|
"markdownDescription": "Controls the main text shown per item."
|
|
7224
5637
|
}
|
|
7225
5638
|
},
|
|
7226
5639
|
"type": "object"
|
|
7227
5640
|
},
|
|
5641
|
+
"PreviewKeyEntry": {
|
|
5642
|
+
"additionalProperties": false,
|
|
5643
|
+
"properties": {
|
|
5644
|
+
"key": {
|
|
5645
|
+
"description": "The key used to access the value used for the preview.",
|
|
5646
|
+
"markdownDescription": "The key used to access the value used for the preview.",
|
|
5647
|
+
"type": "string"
|
|
5648
|
+
}
|
|
5649
|
+
},
|
|
5650
|
+
"required": [
|
|
5651
|
+
"key"
|
|
5652
|
+
],
|
|
5653
|
+
"type": "object"
|
|
5654
|
+
},
|
|
7228
5655
|
"PreviewMetadata": {
|
|
7229
5656
|
"additionalProperties": false,
|
|
7230
5657
|
"properties": {
|
|
7231
|
-
"icon": {
|
|
7232
|
-
"
|
|
7233
|
-
{
|
|
7234
|
-
"items": {
|
|
7235
|
-
"anyOf": [
|
|
7236
|
-
{
|
|
7237
|
-
"additionalProperties": false,
|
|
7238
|
-
"properties": {
|
|
7239
|
-
"key": {
|
|
7240
|
-
"description": "The key used to access the value used for the preview.",
|
|
7241
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7242
|
-
"type": "string"
|
|
7243
|
-
}
|
|
7244
|
-
},
|
|
7245
|
-
"required": [
|
|
7246
|
-
"key"
|
|
7247
|
-
],
|
|
7248
|
-
"type": "object"
|
|
7249
|
-
},
|
|
7250
|
-
{
|
|
7251
|
-
"type": "string"
|
|
7252
|
-
},
|
|
7253
|
-
{
|
|
7254
|
-
"type": "boolean"
|
|
7255
|
-
}
|
|
7256
|
-
]
|
|
7257
|
-
},
|
|
7258
|
-
"type": "array"
|
|
7259
|
-
},
|
|
7260
|
-
{
|
|
7261
|
-
"type": "string"
|
|
7262
|
-
},
|
|
7263
|
-
{
|
|
7264
|
-
"type": "boolean"
|
|
7265
|
-
}
|
|
7266
|
-
],
|
|
5658
|
+
"icon": {
|
|
5659
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7267
5660
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
7268
5661
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
7269
5662
|
},
|
|
@@ -7273,80 +5666,12 @@
|
|
|
7273
5666
|
"type": "string"
|
|
7274
5667
|
},
|
|
7275
5668
|
"image": {
|
|
7276
|
-
"
|
|
7277
|
-
{
|
|
7278
|
-
"items": {
|
|
7279
|
-
"anyOf": [
|
|
7280
|
-
{
|
|
7281
|
-
"additionalProperties": false,
|
|
7282
|
-
"properties": {
|
|
7283
|
-
"key": {
|
|
7284
|
-
"description": "The key used to access the value used for the preview.",
|
|
7285
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7286
|
-
"type": "string"
|
|
7287
|
-
}
|
|
7288
|
-
},
|
|
7289
|
-
"required": [
|
|
7290
|
-
"key"
|
|
7291
|
-
],
|
|
7292
|
-
"type": "object"
|
|
7293
|
-
},
|
|
7294
|
-
{
|
|
7295
|
-
"type": "string"
|
|
7296
|
-
},
|
|
7297
|
-
{
|
|
7298
|
-
"type": "boolean"
|
|
7299
|
-
}
|
|
7300
|
-
]
|
|
7301
|
-
},
|
|
7302
|
-
"type": "array"
|
|
7303
|
-
},
|
|
7304
|
-
{
|
|
7305
|
-
"type": "string"
|
|
7306
|
-
},
|
|
7307
|
-
{
|
|
7308
|
-
"type": "boolean"
|
|
7309
|
-
}
|
|
7310
|
-
],
|
|
5669
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7311
5670
|
"description": "Controls the image shown per item.",
|
|
7312
5671
|
"markdownDescription": "Controls the image shown per item."
|
|
7313
5672
|
},
|
|
7314
5673
|
"text": {
|
|
7315
|
-
"
|
|
7316
|
-
{
|
|
7317
|
-
"items": {
|
|
7318
|
-
"anyOf": [
|
|
7319
|
-
{
|
|
7320
|
-
"additionalProperties": false,
|
|
7321
|
-
"properties": {
|
|
7322
|
-
"key": {
|
|
7323
|
-
"description": "The key used to access the value used for the preview.",
|
|
7324
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
7325
|
-
"type": "string"
|
|
7326
|
-
}
|
|
7327
|
-
},
|
|
7328
|
-
"required": [
|
|
7329
|
-
"key"
|
|
7330
|
-
],
|
|
7331
|
-
"type": "object"
|
|
7332
|
-
},
|
|
7333
|
-
{
|
|
7334
|
-
"type": "string"
|
|
7335
|
-
},
|
|
7336
|
-
{
|
|
7337
|
-
"type": "boolean"
|
|
7338
|
-
}
|
|
7339
|
-
]
|
|
7340
|
-
},
|
|
7341
|
-
"type": "array"
|
|
7342
|
-
},
|
|
7343
|
-
{
|
|
7344
|
-
"type": "string"
|
|
7345
|
-
},
|
|
7346
|
-
{
|
|
7347
|
-
"type": "boolean"
|
|
7348
|
-
}
|
|
7349
|
-
],
|
|
5674
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
7350
5675
|
"description": "Controls the main text shown per item.",
|
|
7351
5676
|
"markdownDescription": "Controls the main text shown per item."
|
|
7352
5677
|
}
|
|
@@ -7635,8 +5960,18 @@
|
|
|
7635
5960
|
"type": "string"
|
|
7636
5961
|
},
|
|
7637
5962
|
"code": {
|
|
7638
|
-
"description": "Enables
|
|
7639
|
-
"markdownDescription": "Enables
|
|
5963
|
+
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5964
|
+
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5965
|
+
"type": "boolean"
|
|
5966
|
+
},
|
|
5967
|
+
"code_block": {
|
|
5968
|
+
"description": "Enables a control to insert a code block.",
|
|
5969
|
+
"markdownDescription": "Enables a control to insert a code block.",
|
|
5970
|
+
"type": "boolean"
|
|
5971
|
+
},
|
|
5972
|
+
"code_inline": {
|
|
5973
|
+
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
5974
|
+
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
7640
5975
|
"type": "boolean"
|
|
7641
5976
|
},
|
|
7642
5977
|
"copyformatting": {
|
|
@@ -7644,12 +5979,6 @@
|
|
|
7644
5979
|
"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.",
|
|
7645
5980
|
"type": "boolean"
|
|
7646
5981
|
},
|
|
7647
|
-
"correct_orientation": {
|
|
7648
|
-
"default": true,
|
|
7649
|
-
"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.",
|
|
7650
|
-
"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.",
|
|
7651
|
-
"type": "boolean"
|
|
7652
|
-
},
|
|
7653
5982
|
"embed": {
|
|
7654
5983
|
"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.",
|
|
7655
5984
|
"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.",
|
|
@@ -7726,7 +6055,8 @@
|
|
|
7726
6055
|
"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.",
|
|
7727
6056
|
"enum": [
|
|
7728
6057
|
"image/jpeg",
|
|
7729
|
-
"image/png"
|
|
6058
|
+
"image/png",
|
|
6059
|
+
"image/webp"
|
|
7730
6060
|
],
|
|
7731
6061
|
"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.",
|
|
7732
6062
|
"type": "string"
|
|
@@ -7861,16 +6191,18 @@
|
|
|
7861
6191
|
"properties": {
|
|
7862
6192
|
"_array_structures": {
|
|
7863
6193
|
"additionalProperties": {},
|
|
7864
|
-
"
|
|
7865
|
-
"
|
|
6194
|
+
"deprecated": "Use _structures instead.",
|
|
6195
|
+
"description": "Now known as _structures.",
|
|
6196
|
+
"markdownDescription": "Now known as _structures.",
|
|
7866
6197
|
"type": "object"
|
|
7867
6198
|
},
|
|
7868
6199
|
"_comments": {
|
|
7869
6200
|
"additionalProperties": {
|
|
7870
6201
|
"type": "string"
|
|
7871
6202
|
},
|
|
7872
|
-
"
|
|
7873
|
-
"
|
|
6203
|
+
"deprecated": "Use _inputs instead.",
|
|
6204
|
+
"description": "Now part of _inputs.*.comment.",
|
|
6205
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
7874
6206
|
"type": "object"
|
|
7875
6207
|
},
|
|
7876
6208
|
"_editables": {
|
|
@@ -7899,8 +6231,9 @@
|
|
|
7899
6231
|
"additionalProperties": {},
|
|
7900
6232
|
"type": "object"
|
|
7901
6233
|
},
|
|
7902
|
-
"
|
|
7903
|
-
"
|
|
6234
|
+
"deprecated": "Use _inputs instead.",
|
|
6235
|
+
"description": "Now part of _inputs.*.options.",
|
|
6236
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
7904
6237
|
"type": "object"
|
|
7905
6238
|
},
|
|
7906
6239
|
"_select_data": {
|
|
@@ -8098,80 +6431,12 @@
|
|
|
8098
6431
|
"additionalProperties": false,
|
|
8099
6432
|
"properties": {
|
|
8100
6433
|
"icon": {
|
|
8101
|
-
"
|
|
8102
|
-
{
|
|
8103
|
-
"items": {
|
|
8104
|
-
"anyOf": [
|
|
8105
|
-
{
|
|
8106
|
-
"additionalProperties": false,
|
|
8107
|
-
"properties": {
|
|
8108
|
-
"key": {
|
|
8109
|
-
"description": "The key used to access the value used for the preview.",
|
|
8110
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
8111
|
-
"type": "string"
|
|
8112
|
-
}
|
|
8113
|
-
},
|
|
8114
|
-
"required": [
|
|
8115
|
-
"key"
|
|
8116
|
-
],
|
|
8117
|
-
"type": "object"
|
|
8118
|
-
},
|
|
8119
|
-
{
|
|
8120
|
-
"type": "string"
|
|
8121
|
-
},
|
|
8122
|
-
{
|
|
8123
|
-
"type": "boolean"
|
|
8124
|
-
}
|
|
8125
|
-
]
|
|
8126
|
-
},
|
|
8127
|
-
"type": "array"
|
|
8128
|
-
},
|
|
8129
|
-
{
|
|
8130
|
-
"type": "string"
|
|
8131
|
-
},
|
|
8132
|
-
{
|
|
8133
|
-
"type": "boolean"
|
|
8134
|
-
}
|
|
8135
|
-
],
|
|
6434
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
8136
6435
|
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
8137
6436
|
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
8138
6437
|
},
|
|
8139
6438
|
"text": {
|
|
8140
|
-
"
|
|
8141
|
-
{
|
|
8142
|
-
"items": {
|
|
8143
|
-
"anyOf": [
|
|
8144
|
-
{
|
|
8145
|
-
"additionalProperties": false,
|
|
8146
|
-
"properties": {
|
|
8147
|
-
"key": {
|
|
8148
|
-
"description": "The key used to access the value used for the preview.",
|
|
8149
|
-
"markdownDescription": "The key used to access the value used for the preview.",
|
|
8150
|
-
"type": "string"
|
|
8151
|
-
}
|
|
8152
|
-
},
|
|
8153
|
-
"required": [
|
|
8154
|
-
"key"
|
|
8155
|
-
],
|
|
8156
|
-
"type": "object"
|
|
8157
|
-
},
|
|
8158
|
-
{
|
|
8159
|
-
"type": "string"
|
|
8160
|
-
},
|
|
8161
|
-
{
|
|
8162
|
-
"type": "boolean"
|
|
8163
|
-
}
|
|
8164
|
-
]
|
|
8165
|
-
},
|
|
8166
|
-
"type": "array"
|
|
8167
|
-
},
|
|
8168
|
-
{
|
|
8169
|
-
"type": "string"
|
|
8170
|
-
},
|
|
8171
|
-
{
|
|
8172
|
-
"type": "boolean"
|
|
8173
|
-
}
|
|
8174
|
-
],
|
|
6439
|
+
"$ref": "#/definitions/PreviewEntry",
|
|
8175
6440
|
"description": "Controls the main text shown per item.",
|
|
8176
6441
|
"markdownDescription": "Controls the main text shown per item."
|
|
8177
6442
|
}
|
|
@@ -8281,6 +6546,354 @@
|
|
|
8281
6546
|
},
|
|
8282
6547
|
"type": "object"
|
|
8283
6548
|
},
|
|
6549
|
+
"SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
|
|
6550
|
+
"additionalProperties": false,
|
|
6551
|
+
"properties": {
|
|
6552
|
+
"exclude": {
|
|
6553
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6554
|
+
"items": {
|
|
6555
|
+
"enum": [
|
|
6556
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6557
|
+
"_cc_jekyll_unknown_tag",
|
|
6558
|
+
"jekyll_highlight",
|
|
6559
|
+
"_cc_jekyll_template",
|
|
6560
|
+
"jekyll_raw",
|
|
6561
|
+
"jekyll_link",
|
|
6562
|
+
"jekyll_post_url"
|
|
6563
|
+
],
|
|
6564
|
+
"type": "string"
|
|
6565
|
+
},
|
|
6566
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6567
|
+
"type": "array"
|
|
6568
|
+
},
|
|
6569
|
+
"include": {
|
|
6570
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6571
|
+
"items": {
|
|
6572
|
+
"enum": [
|
|
6573
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6574
|
+
"_cc_jekyll_unknown_tag",
|
|
6575
|
+
"jekyll_highlight",
|
|
6576
|
+
"_cc_jekyll_template",
|
|
6577
|
+
"jekyll_raw",
|
|
6578
|
+
"jekyll_link",
|
|
6579
|
+
"jekyll_post_url"
|
|
6580
|
+
],
|
|
6581
|
+
"type": "string"
|
|
6582
|
+
},
|
|
6583
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6584
|
+
"type": "array"
|
|
6585
|
+
}
|
|
6586
|
+
},
|
|
6587
|
+
"type": "object"
|
|
6588
|
+
},
|
|
6589
|
+
"SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
|
|
6590
|
+
"additionalProperties": false,
|
|
6591
|
+
"properties": {
|
|
6592
|
+
"exclude": {
|
|
6593
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6594
|
+
"items": {
|
|
6595
|
+
"enum": [
|
|
6596
|
+
"docusaurus_mdx_admonition",
|
|
6597
|
+
"docusaurus_mdx_tabs",
|
|
6598
|
+
"docusaurus_mdx_truncate",
|
|
6599
|
+
"docusaurus_mdx_codeblock"
|
|
6600
|
+
],
|
|
6601
|
+
"type": "string"
|
|
6602
|
+
},
|
|
6603
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6604
|
+
"type": "array"
|
|
6605
|
+
},
|
|
6606
|
+
"include": {
|
|
6607
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6608
|
+
"items": {
|
|
6609
|
+
"enum": [
|
|
6610
|
+
"docusaurus_mdx_admonition",
|
|
6611
|
+
"docusaurus_mdx_tabs",
|
|
6612
|
+
"docusaurus_mdx_truncate",
|
|
6613
|
+
"docusaurus_mdx_codeblock"
|
|
6614
|
+
],
|
|
6615
|
+
"type": "string"
|
|
6616
|
+
},
|
|
6617
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6618
|
+
"type": "array"
|
|
6619
|
+
}
|
|
6620
|
+
},
|
|
6621
|
+
"type": "object"
|
|
6622
|
+
},
|
|
6623
|
+
"SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
|
|
6624
|
+
"additionalProperties": false,
|
|
6625
|
+
"properties": {
|
|
6626
|
+
"exclude": {
|
|
6627
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6628
|
+
"items": {
|
|
6629
|
+
"enum": [
|
|
6630
|
+
"eleventy_liquid_raw",
|
|
6631
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6632
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6633
|
+
"_cc_eleventy_liquid_template"
|
|
6634
|
+
],
|
|
6635
|
+
"type": "string"
|
|
6636
|
+
},
|
|
6637
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6638
|
+
"type": "array"
|
|
6639
|
+
},
|
|
6640
|
+
"include": {
|
|
6641
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6642
|
+
"items": {
|
|
6643
|
+
"enum": [
|
|
6644
|
+
"eleventy_liquid_raw",
|
|
6645
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6646
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6647
|
+
"_cc_eleventy_liquid_template"
|
|
6648
|
+
],
|
|
6649
|
+
"type": "string"
|
|
6650
|
+
},
|
|
6651
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6652
|
+
"type": "array"
|
|
6653
|
+
}
|
|
6654
|
+
},
|
|
6655
|
+
"type": "object"
|
|
6656
|
+
},
|
|
6657
|
+
"SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
|
|
6658
|
+
"additionalProperties": false,
|
|
6659
|
+
"properties": {
|
|
6660
|
+
"exclude": {
|
|
6661
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6662
|
+
"items": {
|
|
6663
|
+
"enum": [
|
|
6664
|
+
"eleventy_nunjucks_raw",
|
|
6665
|
+
"eleventy_nunjucks_verbatim",
|
|
6666
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6667
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6668
|
+
"_cc_eleventy_nunjucks_template"
|
|
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
|
+
"eleventy_nunjucks_raw",
|
|
6680
|
+
"eleventy_nunjucks_verbatim",
|
|
6681
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6682
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6683
|
+
"_cc_eleventy_nunjucks_template"
|
|
6684
|
+
],
|
|
6685
|
+
"type": "string"
|
|
6686
|
+
},
|
|
6687
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6688
|
+
"type": "array"
|
|
6689
|
+
}
|
|
6690
|
+
},
|
|
6691
|
+
"type": "object"
|
|
6692
|
+
},
|
|
6693
|
+
"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\")>": {
|
|
6694
|
+
"additionalProperties": false,
|
|
6695
|
+
"properties": {
|
|
6696
|
+
"exclude": {
|
|
6697
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6698
|
+
"items": {
|
|
6699
|
+
"enum": [
|
|
6700
|
+
"hugo_summary_divider",
|
|
6701
|
+
"hugo_highlight",
|
|
6702
|
+
"hugo_figure",
|
|
6703
|
+
"hugo_gist",
|
|
6704
|
+
"hugo_instagram",
|
|
6705
|
+
"hugo_param",
|
|
6706
|
+
"hugo_ref",
|
|
6707
|
+
"hugo_relref",
|
|
6708
|
+
"hugo_tweet",
|
|
6709
|
+
"hugo_vimeo",
|
|
6710
|
+
"hugo_youtube",
|
|
6711
|
+
"_cc_hugo_unknown_paired",
|
|
6712
|
+
"_cc_hugo_unknown",
|
|
6713
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6714
|
+
"_cc_hugo_unknown_processed"
|
|
6715
|
+
],
|
|
6716
|
+
"type": "string"
|
|
6717
|
+
},
|
|
6718
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6719
|
+
"type": "array"
|
|
6720
|
+
},
|
|
6721
|
+
"include": {
|
|
6722
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6723
|
+
"items": {
|
|
6724
|
+
"enum": [
|
|
6725
|
+
"hugo_summary_divider",
|
|
6726
|
+
"hugo_highlight",
|
|
6727
|
+
"hugo_figure",
|
|
6728
|
+
"hugo_gist",
|
|
6729
|
+
"hugo_instagram",
|
|
6730
|
+
"hugo_param",
|
|
6731
|
+
"hugo_ref",
|
|
6732
|
+
"hugo_relref",
|
|
6733
|
+
"hugo_tweet",
|
|
6734
|
+
"hugo_vimeo",
|
|
6735
|
+
"hugo_youtube",
|
|
6736
|
+
"_cc_hugo_unknown_paired",
|
|
6737
|
+
"_cc_hugo_unknown",
|
|
6738
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6739
|
+
"_cc_hugo_unknown_processed"
|
|
6740
|
+
],
|
|
6741
|
+
"type": "string"
|
|
6742
|
+
},
|
|
6743
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6744
|
+
"type": "array"
|
|
6745
|
+
}
|
|
6746
|
+
},
|
|
6747
|
+
"type": "object"
|
|
6748
|
+
},
|
|
6749
|
+
"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\")>": {
|
|
6750
|
+
"additionalProperties": false,
|
|
6751
|
+
"properties": {
|
|
6752
|
+
"exclude": {
|
|
6753
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6754
|
+
"items": {
|
|
6755
|
+
"enum": [
|
|
6756
|
+
"import",
|
|
6757
|
+
"_cc_mdx_unknown_export",
|
|
6758
|
+
"_cc_mdx_unknown_export_expression",
|
|
6759
|
+
"_cc_mdx_unknown_export_default",
|
|
6760
|
+
"_cc_mdx_unknown_template",
|
|
6761
|
+
"_cc_mdx_paired_unknown",
|
|
6762
|
+
"_cc_mdx_unknown"
|
|
6763
|
+
],
|
|
6764
|
+
"type": "string"
|
|
6765
|
+
},
|
|
6766
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6767
|
+
"type": "array"
|
|
6768
|
+
},
|
|
6769
|
+
"include": {
|
|
6770
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6771
|
+
"items": {
|
|
6772
|
+
"enum": [
|
|
6773
|
+
"import",
|
|
6774
|
+
"_cc_mdx_unknown_export",
|
|
6775
|
+
"_cc_mdx_unknown_export_expression",
|
|
6776
|
+
"_cc_mdx_unknown_export_default",
|
|
6777
|
+
"_cc_mdx_unknown_template",
|
|
6778
|
+
"_cc_mdx_paired_unknown",
|
|
6779
|
+
"_cc_mdx_unknown"
|
|
6780
|
+
],
|
|
6781
|
+
"type": "string"
|
|
6782
|
+
},
|
|
6783
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6784
|
+
"type": "array"
|
|
6785
|
+
}
|
|
6786
|
+
},
|
|
6787
|
+
"type": "object"
|
|
6788
|
+
},
|
|
6789
|
+
"SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
|
|
6790
|
+
"additionalProperties": false,
|
|
6791
|
+
"properties": {
|
|
6792
|
+
"exclude": {
|
|
6793
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6794
|
+
"items": {
|
|
6795
|
+
"enum": [
|
|
6796
|
+
"markdoc_id_annotation",
|
|
6797
|
+
"markdoc_class_annotation",
|
|
6798
|
+
"markdoc_table",
|
|
6799
|
+
"_cc_markdoc_unknown_tag",
|
|
6800
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6801
|
+
"_cc_markdoc_unknown_template"
|
|
6802
|
+
],
|
|
6803
|
+
"type": "string"
|
|
6804
|
+
},
|
|
6805
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6806
|
+
"type": "array"
|
|
6807
|
+
},
|
|
6808
|
+
"include": {
|
|
6809
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6810
|
+
"items": {
|
|
6811
|
+
"enum": [
|
|
6812
|
+
"markdoc_id_annotation",
|
|
6813
|
+
"markdoc_class_annotation",
|
|
6814
|
+
"markdoc_table",
|
|
6815
|
+
"_cc_markdoc_unknown_tag",
|
|
6816
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6817
|
+
"_cc_markdoc_unknown_template"
|
|
6818
|
+
],
|
|
6819
|
+
"type": "string"
|
|
6820
|
+
},
|
|
6821
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6822
|
+
"type": "array"
|
|
6823
|
+
}
|
|
6824
|
+
},
|
|
6825
|
+
"type": "object"
|
|
6826
|
+
},
|
|
6827
|
+
"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\")>": {
|
|
6828
|
+
"additionalProperties": false,
|
|
6829
|
+
"properties": {
|
|
6830
|
+
"exclude": {
|
|
6831
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6832
|
+
"items": {
|
|
6833
|
+
"enum": [
|
|
6834
|
+
"python_markdown_abbreviation",
|
|
6835
|
+
"python_markdown_admonition",
|
|
6836
|
+
"python_markdown_arithmatex",
|
|
6837
|
+
"python_markdown_attribute_list",
|
|
6838
|
+
"python_markdown_code_block",
|
|
6839
|
+
"python_markdown_collapsible_admonition",
|
|
6840
|
+
"python_markdown_tabs",
|
|
6841
|
+
"python_markdown_footnote",
|
|
6842
|
+
"python_markdown_footnote_marker",
|
|
6843
|
+
"python_markdown_icon",
|
|
6844
|
+
"python_markdown_image",
|
|
6845
|
+
"python_markdown_inline_arithmatex",
|
|
6846
|
+
"python_markdown_inline_code",
|
|
6847
|
+
"python_markdown_link",
|
|
6848
|
+
"python_markdown_reference_image",
|
|
6849
|
+
"python_markdown_reference_template_image",
|
|
6850
|
+
"python_markdown_reference_link",
|
|
6851
|
+
"python_markdown_reference",
|
|
6852
|
+
"python_markdown_reference_template",
|
|
6853
|
+
"python_markdown_block_snippet",
|
|
6854
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6855
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6856
|
+
],
|
|
6857
|
+
"type": "string"
|
|
6858
|
+
},
|
|
6859
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6860
|
+
"type": "array"
|
|
6861
|
+
},
|
|
6862
|
+
"include": {
|
|
6863
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6864
|
+
"items": {
|
|
6865
|
+
"enum": [
|
|
6866
|
+
"python_markdown_abbreviation",
|
|
6867
|
+
"python_markdown_admonition",
|
|
6868
|
+
"python_markdown_arithmatex",
|
|
6869
|
+
"python_markdown_attribute_list",
|
|
6870
|
+
"python_markdown_code_block",
|
|
6871
|
+
"python_markdown_collapsible_admonition",
|
|
6872
|
+
"python_markdown_tabs",
|
|
6873
|
+
"python_markdown_footnote",
|
|
6874
|
+
"python_markdown_footnote_marker",
|
|
6875
|
+
"python_markdown_icon",
|
|
6876
|
+
"python_markdown_image",
|
|
6877
|
+
"python_markdown_inline_arithmatex",
|
|
6878
|
+
"python_markdown_inline_code",
|
|
6879
|
+
"python_markdown_link",
|
|
6880
|
+
"python_markdown_reference_image",
|
|
6881
|
+
"python_markdown_reference_template_image",
|
|
6882
|
+
"python_markdown_reference_link",
|
|
6883
|
+
"python_markdown_reference",
|
|
6884
|
+
"python_markdown_reference_template",
|
|
6885
|
+
"python_markdown_block_snippet",
|
|
6886
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6887
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6888
|
+
],
|
|
6889
|
+
"type": "string"
|
|
6890
|
+
},
|
|
6891
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6892
|
+
"type": "array"
|
|
6893
|
+
}
|
|
6894
|
+
},
|
|
6895
|
+
"type": "object"
|
|
6896
|
+
},
|
|
8284
6897
|
"SnippetsImports": {
|
|
8285
6898
|
"additionalProperties": false,
|
|
8286
6899
|
"properties": {
|
|
@@ -8290,38 +6903,7 @@
|
|
|
8290
6903
|
"type": "boolean"
|
|
8291
6904
|
},
|
|
8292
6905
|
{
|
|
8293
|
-
"
|
|
8294
|
-
"properties": {
|
|
8295
|
-
"exclude": {
|
|
8296
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8297
|
-
"items": {
|
|
8298
|
-
"enum": [
|
|
8299
|
-
"docusaurus_mdx_admonition",
|
|
8300
|
-
"docusaurus_mdx_tabs",
|
|
8301
|
-
"docusaurus_mdx_truncate",
|
|
8302
|
-
"docusaurus_mdx_codeblock"
|
|
8303
|
-
],
|
|
8304
|
-
"type": "string"
|
|
8305
|
-
},
|
|
8306
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8307
|
-
"type": "array"
|
|
8308
|
-
},
|
|
8309
|
-
"include": {
|
|
8310
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8311
|
-
"items": {
|
|
8312
|
-
"enum": [
|
|
8313
|
-
"docusaurus_mdx_admonition",
|
|
8314
|
-
"docusaurus_mdx_tabs",
|
|
8315
|
-
"docusaurus_mdx_truncate",
|
|
8316
|
-
"docusaurus_mdx_codeblock"
|
|
8317
|
-
],
|
|
8318
|
-
"type": "string"
|
|
8319
|
-
},
|
|
8320
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8321
|
-
"type": "array"
|
|
8322
|
-
}
|
|
8323
|
-
},
|
|
8324
|
-
"type": "object"
|
|
6906
|
+
"$ref": "#/definitions/SnippetsImport%3C(%22docusaurus_mdx_admonition%22%7C%22docusaurus_mdx_tabs%22%7C%22docusaurus_mdx_truncate%22%7C%22docusaurus_mdx_codeblock%22)%3E"
|
|
8325
6907
|
}
|
|
8326
6908
|
],
|
|
8327
6909
|
"description": "Default snippets for Docusaurus SSG.",
|
|
@@ -8333,38 +6915,7 @@
|
|
|
8333
6915
|
"type": "boolean"
|
|
8334
6916
|
},
|
|
8335
6917
|
{
|
|
8336
|
-
"
|
|
8337
|
-
"properties": {
|
|
8338
|
-
"exclude": {
|
|
8339
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8340
|
-
"items": {
|
|
8341
|
-
"enum": [
|
|
8342
|
-
"eleventy_liquid_raw",
|
|
8343
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
8344
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
8345
|
-
"_cc_eleventy_liquid_template"
|
|
8346
|
-
],
|
|
8347
|
-
"type": "string"
|
|
8348
|
-
},
|
|
8349
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8350
|
-
"type": "array"
|
|
8351
|
-
},
|
|
8352
|
-
"include": {
|
|
8353
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8354
|
-
"items": {
|
|
8355
|
-
"enum": [
|
|
8356
|
-
"eleventy_liquid_raw",
|
|
8357
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
8358
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
8359
|
-
"_cc_eleventy_liquid_template"
|
|
8360
|
-
],
|
|
8361
|
-
"type": "string"
|
|
8362
|
-
},
|
|
8363
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8364
|
-
"type": "array"
|
|
8365
|
-
}
|
|
8366
|
-
},
|
|
8367
|
-
"type": "object"
|
|
6918
|
+
"$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"
|
|
8368
6919
|
}
|
|
8369
6920
|
],
|
|
8370
6921
|
"description": "Default snippets for Eleventy SSG Liquid files.",
|
|
@@ -8376,40 +6927,7 @@
|
|
|
8376
6927
|
"type": "boolean"
|
|
8377
6928
|
},
|
|
8378
6929
|
{
|
|
8379
|
-
"
|
|
8380
|
-
"properties": {
|
|
8381
|
-
"exclude": {
|
|
8382
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8383
|
-
"items": {
|
|
8384
|
-
"enum": [
|
|
8385
|
-
"eleventy_nunjucks_raw",
|
|
8386
|
-
"eleventy_nunjucks_verbatim",
|
|
8387
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
8388
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
8389
|
-
"_cc_eleventy_nunjucks_template"
|
|
8390
|
-
],
|
|
8391
|
-
"type": "string"
|
|
8392
|
-
},
|
|
8393
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8394
|
-
"type": "array"
|
|
8395
|
-
},
|
|
8396
|
-
"include": {
|
|
8397
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8398
|
-
"items": {
|
|
8399
|
-
"enum": [
|
|
8400
|
-
"eleventy_nunjucks_raw",
|
|
8401
|
-
"eleventy_nunjucks_verbatim",
|
|
8402
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
8403
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
8404
|
-
"_cc_eleventy_nunjucks_template"
|
|
8405
|
-
],
|
|
8406
|
-
"type": "string"
|
|
8407
|
-
},
|
|
8408
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8409
|
-
"type": "array"
|
|
8410
|
-
}
|
|
8411
|
-
},
|
|
8412
|
-
"type": "object"
|
|
6930
|
+
"$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"
|
|
8413
6931
|
}
|
|
8414
6932
|
],
|
|
8415
6933
|
"description": "Default snippets for Eleventy SSG Nunjucks files.",
|
|
@@ -8421,60 +6939,7 @@
|
|
|
8421
6939
|
"type": "boolean"
|
|
8422
6940
|
},
|
|
8423
6941
|
{
|
|
8424
|
-
"
|
|
8425
|
-
"properties": {
|
|
8426
|
-
"exclude": {
|
|
8427
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8428
|
-
"items": {
|
|
8429
|
-
"enum": [
|
|
8430
|
-
"hugo_summary_divider",
|
|
8431
|
-
"hugo_highlight",
|
|
8432
|
-
"hugo_figure",
|
|
8433
|
-
"hugo_gist",
|
|
8434
|
-
"hugo_instagram",
|
|
8435
|
-
"hugo_param",
|
|
8436
|
-
"hugo_ref",
|
|
8437
|
-
"hugo_relref",
|
|
8438
|
-
"hugo_tweet",
|
|
8439
|
-
"hugo_vimeo",
|
|
8440
|
-
"hugo_youtube",
|
|
8441
|
-
"_cc_hugo_unknown_paired",
|
|
8442
|
-
"_cc_hugo_unknown",
|
|
8443
|
-
"_cc_hugo_unknown_paired_processed",
|
|
8444
|
-
"_cc_hugo_unknown_processed"
|
|
8445
|
-
],
|
|
8446
|
-
"type": "string"
|
|
8447
|
-
},
|
|
8448
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8449
|
-
"type": "array"
|
|
8450
|
-
},
|
|
8451
|
-
"include": {
|
|
8452
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8453
|
-
"items": {
|
|
8454
|
-
"enum": [
|
|
8455
|
-
"hugo_summary_divider",
|
|
8456
|
-
"hugo_highlight",
|
|
8457
|
-
"hugo_figure",
|
|
8458
|
-
"hugo_gist",
|
|
8459
|
-
"hugo_instagram",
|
|
8460
|
-
"hugo_param",
|
|
8461
|
-
"hugo_ref",
|
|
8462
|
-
"hugo_relref",
|
|
8463
|
-
"hugo_tweet",
|
|
8464
|
-
"hugo_vimeo",
|
|
8465
|
-
"hugo_youtube",
|
|
8466
|
-
"_cc_hugo_unknown_paired",
|
|
8467
|
-
"_cc_hugo_unknown",
|
|
8468
|
-
"_cc_hugo_unknown_paired_processed",
|
|
8469
|
-
"_cc_hugo_unknown_processed"
|
|
8470
|
-
],
|
|
8471
|
-
"type": "string"
|
|
8472
|
-
},
|
|
8473
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8474
|
-
"type": "array"
|
|
8475
|
-
}
|
|
8476
|
-
},
|
|
8477
|
-
"type": "object"
|
|
6942
|
+
"$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"
|
|
8478
6943
|
}
|
|
8479
6944
|
],
|
|
8480
6945
|
"description": "Default snippets for Hugo SSG.",
|
|
@@ -8486,44 +6951,7 @@
|
|
|
8486
6951
|
"type": "boolean"
|
|
8487
6952
|
},
|
|
8488
6953
|
{
|
|
8489
|
-
"
|
|
8490
|
-
"properties": {
|
|
8491
|
-
"exclude": {
|
|
8492
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8493
|
-
"items": {
|
|
8494
|
-
"enum": [
|
|
8495
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
8496
|
-
"_cc_jekyll_unknown_tag",
|
|
8497
|
-
"jekyll_highlight",
|
|
8498
|
-
"_cc_jekyll_template",
|
|
8499
|
-
"jekyll_raw",
|
|
8500
|
-
"jekyll_link",
|
|
8501
|
-
"jekyll_post_url"
|
|
8502
|
-
],
|
|
8503
|
-
"type": "string"
|
|
8504
|
-
},
|
|
8505
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8506
|
-
"type": "array"
|
|
8507
|
-
},
|
|
8508
|
-
"include": {
|
|
8509
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8510
|
-
"items": {
|
|
8511
|
-
"enum": [
|
|
8512
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
8513
|
-
"_cc_jekyll_unknown_tag",
|
|
8514
|
-
"jekyll_highlight",
|
|
8515
|
-
"_cc_jekyll_template",
|
|
8516
|
-
"jekyll_raw",
|
|
8517
|
-
"jekyll_link",
|
|
8518
|
-
"jekyll_post_url"
|
|
8519
|
-
],
|
|
8520
|
-
"type": "string"
|
|
8521
|
-
},
|
|
8522
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8523
|
-
"type": "array"
|
|
8524
|
-
}
|
|
8525
|
-
},
|
|
8526
|
-
"type": "object"
|
|
6954
|
+
"$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"
|
|
8527
6955
|
}
|
|
8528
6956
|
],
|
|
8529
6957
|
"description": "Default snippets for Jekyll SSG.",
|
|
@@ -8535,42 +6963,7 @@
|
|
|
8535
6963
|
"type": "boolean"
|
|
8536
6964
|
},
|
|
8537
6965
|
{
|
|
8538
|
-
"
|
|
8539
|
-
"properties": {
|
|
8540
|
-
"exclude": {
|
|
8541
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8542
|
-
"items": {
|
|
8543
|
-
"enum": [
|
|
8544
|
-
"markdoc_id_annotation",
|
|
8545
|
-
"markdoc_class_annotation",
|
|
8546
|
-
"markdoc_table",
|
|
8547
|
-
"_cc_markdoc_unknown_tag",
|
|
8548
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
8549
|
-
"_cc_markdoc_unknown_template"
|
|
8550
|
-
],
|
|
8551
|
-
"type": "string"
|
|
8552
|
-
},
|
|
8553
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8554
|
-
"type": "array"
|
|
8555
|
-
},
|
|
8556
|
-
"include": {
|
|
8557
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8558
|
-
"items": {
|
|
8559
|
-
"enum": [
|
|
8560
|
-
"markdoc_id_annotation",
|
|
8561
|
-
"markdoc_class_annotation",
|
|
8562
|
-
"markdoc_table",
|
|
8563
|
-
"_cc_markdoc_unknown_tag",
|
|
8564
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
8565
|
-
"_cc_markdoc_unknown_template"
|
|
8566
|
-
],
|
|
8567
|
-
"type": "string"
|
|
8568
|
-
},
|
|
8569
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8570
|
-
"type": "array"
|
|
8571
|
-
}
|
|
8572
|
-
},
|
|
8573
|
-
"type": "object"
|
|
6966
|
+
"$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"
|
|
8574
6967
|
}
|
|
8575
6968
|
],
|
|
8576
6969
|
"description": "Default snippets for Markdoc-based content.",
|
|
@@ -8582,44 +6975,7 @@
|
|
|
8582
6975
|
"type": "boolean"
|
|
8583
6976
|
},
|
|
8584
6977
|
{
|
|
8585
|
-
"
|
|
8586
|
-
"properties": {
|
|
8587
|
-
"exclude": {
|
|
8588
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8589
|
-
"items": {
|
|
8590
|
-
"enum": [
|
|
8591
|
-
"import",
|
|
8592
|
-
"_cc_mdx_unknown_export",
|
|
8593
|
-
"_cc_mdx_unknown_export_expression",
|
|
8594
|
-
"_cc_mdx_unknown_export_default",
|
|
8595
|
-
"_cc_mdx_unknown_template",
|
|
8596
|
-
"_cc_mdx_paired_unknown",
|
|
8597
|
-
"_cc_mdx_unknown"
|
|
8598
|
-
],
|
|
8599
|
-
"type": "string"
|
|
8600
|
-
},
|
|
8601
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8602
|
-
"type": "array"
|
|
8603
|
-
},
|
|
8604
|
-
"include": {
|
|
8605
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8606
|
-
"items": {
|
|
8607
|
-
"enum": [
|
|
8608
|
-
"import",
|
|
8609
|
-
"_cc_mdx_unknown_export",
|
|
8610
|
-
"_cc_mdx_unknown_export_expression",
|
|
8611
|
-
"_cc_mdx_unknown_export_default",
|
|
8612
|
-
"_cc_mdx_unknown_template",
|
|
8613
|
-
"_cc_mdx_paired_unknown",
|
|
8614
|
-
"_cc_mdx_unknown"
|
|
8615
|
-
],
|
|
8616
|
-
"type": "string"
|
|
8617
|
-
},
|
|
8618
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8619
|
-
"type": "array"
|
|
8620
|
-
}
|
|
8621
|
-
},
|
|
8622
|
-
"type": "object"
|
|
6978
|
+
"$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"
|
|
8623
6979
|
}
|
|
8624
6980
|
],
|
|
8625
6981
|
"description": "Default snippets for MDX-based content.",
|
|
@@ -8631,74 +6987,7 @@
|
|
|
8631
6987
|
"type": "boolean"
|
|
8632
6988
|
},
|
|
8633
6989
|
{
|
|
8634
|
-
"
|
|
8635
|
-
"properties": {
|
|
8636
|
-
"exclude": {
|
|
8637
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8638
|
-
"items": {
|
|
8639
|
-
"enum": [
|
|
8640
|
-
"python_markdown_abbreviation",
|
|
8641
|
-
"python_markdown_admonition",
|
|
8642
|
-
"python_markdown_arithmatex",
|
|
8643
|
-
"python_markdown_attribute_list",
|
|
8644
|
-
"python_markdown_code_block",
|
|
8645
|
-
"python_markdown_collapsible_admonition",
|
|
8646
|
-
"python_markdown_tabs",
|
|
8647
|
-
"python_markdown_footnote",
|
|
8648
|
-
"python_markdown_footnote_marker",
|
|
8649
|
-
"python_markdown_icon",
|
|
8650
|
-
"python_markdown_image",
|
|
8651
|
-
"python_markdown_inline_arithmatex",
|
|
8652
|
-
"python_markdown_inline_code",
|
|
8653
|
-
"python_markdown_link",
|
|
8654
|
-
"python_markdown_reference_image",
|
|
8655
|
-
"python_markdown_reference_template_image",
|
|
8656
|
-
"python_markdown_reference_link",
|
|
8657
|
-
"python_markdown_reference",
|
|
8658
|
-
"python_markdown_reference_template",
|
|
8659
|
-
"python_markdown_block_snippet",
|
|
8660
|
-
"_cc_python_markdown_unknown_snippet",
|
|
8661
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
8662
|
-
],
|
|
8663
|
-
"type": "string"
|
|
8664
|
-
},
|
|
8665
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
8666
|
-
"type": "array"
|
|
8667
|
-
},
|
|
8668
|
-
"include": {
|
|
8669
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8670
|
-
"items": {
|
|
8671
|
-
"enum": [
|
|
8672
|
-
"python_markdown_abbreviation",
|
|
8673
|
-
"python_markdown_admonition",
|
|
8674
|
-
"python_markdown_arithmatex",
|
|
8675
|
-
"python_markdown_attribute_list",
|
|
8676
|
-
"python_markdown_code_block",
|
|
8677
|
-
"python_markdown_collapsible_admonition",
|
|
8678
|
-
"python_markdown_tabs",
|
|
8679
|
-
"python_markdown_footnote",
|
|
8680
|
-
"python_markdown_footnote_marker",
|
|
8681
|
-
"python_markdown_icon",
|
|
8682
|
-
"python_markdown_image",
|
|
8683
|
-
"python_markdown_inline_arithmatex",
|
|
8684
|
-
"python_markdown_inline_code",
|
|
8685
|
-
"python_markdown_link",
|
|
8686
|
-
"python_markdown_reference_image",
|
|
8687
|
-
"python_markdown_reference_template_image",
|
|
8688
|
-
"python_markdown_reference_link",
|
|
8689
|
-
"python_markdown_reference",
|
|
8690
|
-
"python_markdown_reference_template",
|
|
8691
|
-
"python_markdown_block_snippet",
|
|
8692
|
-
"_cc_python_markdown_unknown_snippet",
|
|
8693
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
8694
|
-
],
|
|
8695
|
-
"type": "string"
|
|
8696
|
-
},
|
|
8697
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
8698
|
-
"type": "array"
|
|
8699
|
-
}
|
|
8700
|
-
},
|
|
8701
|
-
"type": "object"
|
|
6990
|
+
"$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"
|
|
8702
6991
|
}
|
|
8703
6992
|
],
|
|
8704
6993
|
"description": "Default snippets for content using Python markdown extensions.",
|
|
@@ -8777,37 +7066,14 @@
|
|
|
8777
7066
|
"type": "number"
|
|
8778
7067
|
},
|
|
8779
7068
|
"theme": {
|
|
7069
|
+
"$ref": "#/definitions/Theme",
|
|
8780
7070
|
"default": "monokai",
|
|
8781
7071
|
"description": "Changes the color scheme for syntax highlighting in the editor.",
|
|
8782
|
-
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
8783
|
-
"type": "string"
|
|
7072
|
+
"markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
|
|
8784
7073
|
}
|
|
8785
7074
|
},
|
|
8786
7075
|
"type": "object"
|
|
8787
7076
|
},
|
|
8788
|
-
"SsgKey": {
|
|
8789
|
-
"enum": [
|
|
8790
|
-
"hugo",
|
|
8791
|
-
"jekyll",
|
|
8792
|
-
"eleventy",
|
|
8793
|
-
"astro",
|
|
8794
|
-
"lume",
|
|
8795
|
-
"mkdocs",
|
|
8796
|
-
"nextjs",
|
|
8797
|
-
"sveltekit",
|
|
8798
|
-
"bridgetown",
|
|
8799
|
-
"docusaurus",
|
|
8800
|
-
"gatsby",
|
|
8801
|
-
"hexo",
|
|
8802
|
-
"nuxtjs",
|
|
8803
|
-
"sphinx",
|
|
8804
|
-
"static",
|
|
8805
|
-
"other",
|
|
8806
|
-
"legacy",
|
|
8807
|
-
"unknown"
|
|
8808
|
-
],
|
|
8809
|
-
"type": "string"
|
|
8810
|
-
},
|
|
8811
7077
|
"Structure": {
|
|
8812
7078
|
"additionalProperties": false,
|
|
8813
7079
|
"properties": {
|
|
@@ -9301,6 +7567,49 @@
|
|
|
9301
7567
|
},
|
|
9302
7568
|
"type": "object"
|
|
9303
7569
|
},
|
|
7570
|
+
"Theme": {
|
|
7571
|
+
"enum": [
|
|
7572
|
+
"ambiance",
|
|
7573
|
+
"chaos",
|
|
7574
|
+
"chrome",
|
|
7575
|
+
"clouds",
|
|
7576
|
+
"clouds_midnight",
|
|
7577
|
+
"cobalt",
|
|
7578
|
+
"crimson_editor",
|
|
7579
|
+
"dawn",
|
|
7580
|
+
"dracula",
|
|
7581
|
+
"dreamweaver",
|
|
7582
|
+
"eclipse",
|
|
7583
|
+
"github",
|
|
7584
|
+
"gob",
|
|
7585
|
+
"gruvbox",
|
|
7586
|
+
"idle_fingers",
|
|
7587
|
+
"iplastic",
|
|
7588
|
+
"katzenmilch",
|
|
7589
|
+
"kr_theme",
|
|
7590
|
+
"kuroir",
|
|
7591
|
+
"merbivore",
|
|
7592
|
+
"merbivore_soft",
|
|
7593
|
+
"mono_industrial",
|
|
7594
|
+
"monokai",
|
|
7595
|
+
"nord_dark",
|
|
7596
|
+
"pastel_on_dark",
|
|
7597
|
+
"solarized_dark",
|
|
7598
|
+
"solarized_light",
|
|
7599
|
+
"sqlserver",
|
|
7600
|
+
"terminal",
|
|
7601
|
+
"textmate",
|
|
7602
|
+
"tomorrow",
|
|
7603
|
+
"tomorrow_night",
|
|
7604
|
+
"tomorrow_night_blue",
|
|
7605
|
+
"tomorrow_night_bright",
|
|
7606
|
+
"tomorrow_night_eighties",
|
|
7607
|
+
"twilight",
|
|
7608
|
+
"vibrant_ink",
|
|
7609
|
+
"xcode"
|
|
7610
|
+
],
|
|
7611
|
+
"type": "string"
|
|
7612
|
+
},
|
|
9304
7613
|
"Timezone": {
|
|
9305
7614
|
"enum": [
|
|
9306
7615
|
"Africa/Abidjan",
|