@cloudcannon/configuration-types 0.0.6 → 0.0.8

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.
@@ -289,8 +289,18 @@
289
289
  "type": "string"
290
290
  },
291
291
  "code": {
292
- "description": "Enables a control to set selected text to inline code, and unselected blocks of text to code blocks.",
293
- "markdownDescription": "Enables a control to set selected text to inline code, and unselected blocks of text to code\nblocks.",
292
+ "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
293
+ "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
294
+ "type": "boolean"
295
+ },
296
+ "code_block": {
297
+ "description": "Enables a control to insert a code block.",
298
+ "markdownDescription": "Enables a control to insert a code block.",
299
+ "type": "boolean"
300
+ },
301
+ "code_inline": {
302
+ "description": "Enables a control to create an inline code element, containing any selected text.",
303
+ "markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
294
304
  "type": "boolean"
295
305
  },
296
306
  "copyformatting": {
@@ -732,10 +742,10 @@
732
742
  "type": "number"
733
743
  },
734
744
  "theme": {
745
+ "$ref": "#/definitions/Theme",
735
746
  "default": "monokai",
736
747
  "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"
748
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
739
749
  }
740
750
  },
741
751
  "type": "object"
@@ -949,8 +959,8 @@
949
959
  "type": "string"
950
960
  },
951
961
  "publish_to": {
952
- "description": "Defines a target collection when publishing. When a file is published (currently only relevant to Jekyll), the target collection's create definition is used instead.",
953
- "markdownDescription": "Defines a target collection when publishing. When a file is published (currently only relevant\nto Jekyll), the target collection's create definition is used instead.",
962
+ "description": "Defines a target collection when publishing. When a file is published, the target collection's create definition is used instead.",
963
+ "markdownDescription": "Defines a target collection when publishing. When a file is published, the target collection's\ncreate definition is used instead.",
954
964
  "type": "string"
955
965
  }
956
966
  },
@@ -1165,6 +1175,93 @@
1165
1175
  ],
1166
1176
  "type": "string"
1167
1177
  },
1178
+ "FileConfigEntry": {
1179
+ "additionalProperties": false,
1180
+ "properties": {
1181
+ "_array_structures": {
1182
+ "additionalProperties": {},
1183
+ "deprecated": "Use _structures instead.",
1184
+ "description": "Now known as _structures.",
1185
+ "markdownDescription": "Now known as _structures.",
1186
+ "type": "object"
1187
+ },
1188
+ "_comments": {
1189
+ "additionalProperties": {
1190
+ "type": "string"
1191
+ },
1192
+ "deprecated": "Use _inputs instead.",
1193
+ "description": "Now part of _inputs.*.comment.",
1194
+ "markdownDescription": "Now part of _inputs.*.comment.",
1195
+ "type": "object"
1196
+ },
1197
+ "_editables": {
1198
+ "$ref": "#/definitions/Editables",
1199
+ "description": "Contains input options for Editable Regions and the Content Editor.",
1200
+ "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
1201
+ },
1202
+ "_enabled_editors": {
1203
+ "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.",
1204
+ "items": {
1205
+ "$ref": "#/definitions/EditorKey"
1206
+ },
1207
+ "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.",
1208
+ "type": "array"
1209
+ },
1210
+ "_inputs": {
1211
+ "additionalProperties": {
1212
+ "$ref": "#/definitions/Input"
1213
+ },
1214
+ "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1215
+ "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1216
+ "type": "object"
1217
+ },
1218
+ "_options": {
1219
+ "additionalProperties": {
1220
+ "additionalProperties": {},
1221
+ "type": "object"
1222
+ },
1223
+ "deprecated": "Use _inputs instead.",
1224
+ "description": "Now part of _inputs.*.options.",
1225
+ "markdownDescription": "Now part of _inputs.*.options.",
1226
+ "type": "object"
1227
+ },
1228
+ "_select_data": {
1229
+ "additionalProperties": {
1230
+ "$ref": "#/definitions/SelectValues"
1231
+ },
1232
+ "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
1233
+ "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
1234
+ "type": "object"
1235
+ },
1236
+ "_structures": {
1237
+ "additionalProperties": {
1238
+ "$ref": "#/definitions/Structure"
1239
+ },
1240
+ "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.",
1241
+ "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.",
1242
+ "type": "object"
1243
+ },
1244
+ "glob": {
1245
+ "anyOf": [
1246
+ {
1247
+ "items": {
1248
+ "type": "string"
1249
+ },
1250
+ "type": "array"
1251
+ },
1252
+ {
1253
+ "type": "string"
1254
+ }
1255
+ ],
1256
+ "description": "The glob pattern(s) targeting a path to one or more files.",
1257
+ "markdownDescription": "The glob pattern(s) targeting a path to one or more files."
1258
+ }
1259
+ },
1260
+ "required": [
1261
+ "glob"
1262
+ ],
1263
+ "type": "object"
1264
+ },
1168
1265
  "FileInput": {
1169
1266
  "additionalProperties": false,
1170
1267
  "properties": {
@@ -1326,19 +1423,23 @@
1326
1423
  },
1327
1424
  "HugoCollectionConfig": {
1328
1425
  "additionalProperties": false,
1426
+ "description": "The `collections_config` entry format for build-coupled Hugo sites.",
1427
+ "markdownDescription": "The `collections_config` entry format for build-coupled Hugo sites.",
1329
1428
  "properties": {
1330
1429
  "_array_structures": {
1331
1430
  "additionalProperties": {},
1332
- "description": "[DEPRECATED] Now known as _structures.",
1333
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1431
+ "deprecated": "Use _structures instead.",
1432
+ "description": "Now known as _structures.",
1433
+ "markdownDescription": "Now known as _structures.",
1334
1434
  "type": "object"
1335
1435
  },
1336
1436
  "_comments": {
1337
1437
  "additionalProperties": {
1338
1438
  "type": "string"
1339
1439
  },
1340
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1341
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1440
+ "deprecated": "Use _inputs instead.",
1441
+ "description": "Now part of _inputs.*.comment.",
1442
+ "markdownDescription": "Now part of _inputs.*.comment.",
1342
1443
  "type": "object"
1343
1444
  },
1344
1445
  "_editables": {
@@ -1367,8 +1468,9 @@
1367
1468
  "additionalProperties": {},
1368
1469
  "type": "object"
1369
1470
  },
1370
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1371
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1471
+ "deprecated": "Use _inputs instead.",
1472
+ "description": "Now part of _inputs.*.options.",
1473
+ "markdownDescription": "Now part of _inputs.*.options.",
1372
1474
  "type": "object"
1373
1475
  },
1374
1476
  "_select_data": {
@@ -1406,18 +1508,18 @@
1406
1508
  "type": "string"
1407
1509
  },
1408
1510
  "disable_add": {
1409
- "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.",
1410
- "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.",
1511
+ "description": "Prevents users from adding new files in the collection file list if true.",
1512
+ "markdownDescription": "Prevents users from adding new files in the collection file list if true.",
1411
1513
  "type": "boolean"
1412
1514
  },
1413
1515
  "disable_add_folder": {
1414
- "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.",
1415
- "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.",
1516
+ "description": "Prevents users from adding new folders in the collection file list if true.",
1517
+ "markdownDescription": "Prevents users from adding new folders in the collection file list if true.",
1416
1518
  "type": "boolean"
1417
1519
  },
1418
1520
  "disable_file_actions": {
1419
- "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.",
1420
- "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.",
1521
+ "description": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
1522
+ "markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
1421
1523
  "type": "boolean"
1422
1524
  },
1423
1525
  "documentation": {
@@ -1437,6 +1539,21 @@
1437
1539
  "description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
1438
1540
  "markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
1439
1541
  },
1542
+ "glob": {
1543
+ "anyOf": [
1544
+ {
1545
+ "items": {
1546
+ "type": "string"
1547
+ },
1548
+ "type": "array"
1549
+ },
1550
+ {
1551
+ "type": "string"
1552
+ }
1553
+ ],
1554
+ "description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
1555
+ "markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
1556
+ },
1440
1557
  "icon": {
1441
1558
  "$ref": "#/definitions/Icon",
1442
1559
  "description": "Sets an icon to use alongside references to this collection.",
@@ -1458,13 +1575,13 @@
1458
1575
  "type": "boolean"
1459
1576
  },
1460
1577
  "parse_branch_index": {
1461
- "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.",
1462
- "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.",
1578
+ "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.",
1579
+ "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.",
1463
1580
  "type": "boolean"
1464
1581
  },
1465
1582
  "path": {
1466
- "description": "The top-most folder where the files in this collection are stored. It is relative to source. Each collection must have a unique path.",
1467
- "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.\nEach collection must have a unique path.",
1583
+ "description": "The top-most folder where the files in this collection are stored. It is relative to source.",
1584
+ "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
1468
1585
  "type": "string"
1469
1586
  },
1470
1587
  "preview": {
@@ -1513,19 +1630,23 @@
1513
1630
  },
1514
1631
  "HugoConfiguration": {
1515
1632
  "additionalProperties": false,
1633
+ "description": "The configuration format for build-coupled Hugo sites.",
1634
+ "markdownDescription": "The configuration format for build-coupled Hugo sites.",
1516
1635
  "properties": {
1517
1636
  "_array_structures": {
1518
1637
  "additionalProperties": {},
1519
- "description": "[DEPRECATED] Now known as _structures.",
1520
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1638
+ "deprecated": "Use _structures instead.",
1639
+ "description": "Now known as _structures.",
1640
+ "markdownDescription": "Now known as _structures.",
1521
1641
  "type": "object"
1522
1642
  },
1523
1643
  "_comments": {
1524
1644
  "additionalProperties": {
1525
1645
  "type": "string"
1526
1646
  },
1527
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1528
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1647
+ "deprecated": "Use _inputs instead.",
1648
+ "description": "Now part of _inputs.*.comment.",
1649
+ "markdownDescription": "Now part of _inputs.*.comment.",
1529
1650
  "type": "object"
1530
1651
  },
1531
1652
  "_editables": {
@@ -1554,8 +1675,9 @@
1554
1675
  "additionalProperties": {},
1555
1676
  "type": "object"
1556
1677
  },
1557
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1558
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1678
+ "deprecated": "Use _inputs instead.",
1679
+ "description": "Now part of _inputs.*.options.",
1680
+ "markdownDescription": "Now part of _inputs.*.options.",
1559
1681
  "type": "object"
1560
1682
  },
1561
1683
  "_select_data": {
@@ -1630,17 +1752,17 @@
1630
1752
  "type": "boolean"
1631
1753
  },
1632
1754
  "commit_templates": {
1755
+ "description": "Templates for commit messages when saving changes.",
1633
1756
  "items": {
1634
1757
  "$ref": "#/definitions/CommitTemplate"
1635
1758
  },
1759
+ "markdownDescription": "Templates for commit messages when saving changes.",
1636
1760
  "type": "array"
1637
1761
  },
1638
1762
  "data_config": {
1639
1763
  "additionalProperties": {
1640
1764
  "type": "boolean"
1641
1765
  },
1642
- "description": "Controls what data sets are available to populate select and multiselect inputs.",
1643
- "markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
1644
1766
  "type": "object"
1645
1767
  },
1646
1768
  "editor": {
@@ -1648,6 +1770,14 @@
1648
1770
  "description": "Contains settings for the default editor actions on your site.",
1649
1771
  "markdownDescription": "Contains settings for the default editor actions on your site."
1650
1772
  },
1773
+ "file_config": {
1774
+ "additionalProperties": {
1775
+ "$ref": "#/definitions/FileConfigEntry"
1776
+ },
1777
+ "description": "Provides scope to configure at a file level, without adding configuration to files.",
1778
+ "markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
1779
+ "type": "object"
1780
+ },
1651
1781
  "generator": {
1652
1782
  "additionalProperties": false,
1653
1783
  "description": "Contains settings for various Markdown engines.",
@@ -1719,10 +1849,6 @@
1719
1849
  "description": "Settings for the behavior and appearance of the Source Editor.",
1720
1850
  "markdownDescription": "Settings for the behavior and appearance of the Source Editor."
1721
1851
  },
1722
- "ssg": {
1723
- "const": "hugo",
1724
- "type": "string"
1725
- },
1726
1852
  "timezone": {
1727
1853
  "$ref": "#/definitions/Timezone",
1728
1854
  "default": "Etc/UTC",
@@ -5244,158 +5370,22 @@
5244
5370
  "additionalProperties": false,
5245
5371
  "properties": {
5246
5372
  "icon": {
5247
- "anyOf": [
5248
- {
5249
- "items": {
5250
- "anyOf": [
5251
- {
5252
- "additionalProperties": false,
5253
- "properties": {
5254
- "key": {
5255
- "description": "The key used to access the value used for the preview.",
5256
- "markdownDescription": "The key used to access the value used for the preview.",
5257
- "type": "string"
5258
- }
5259
- },
5260
- "required": [
5261
- "key"
5262
- ],
5263
- "type": "object"
5264
- },
5265
- {
5266
- "type": "string"
5267
- },
5268
- {
5269
- "type": "boolean"
5270
- }
5271
- ]
5272
- },
5273
- "type": "array"
5274
- },
5275
- {
5276
- "type": "string"
5277
- },
5278
- {
5279
- "type": "boolean"
5280
- }
5281
- ],
5373
+ "$ref": "#/definitions/PreviewEntry",
5282
5374
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5283
5375
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5284
5376
  },
5285
5377
  "image": {
5286
- "anyOf": [
5287
- {
5288
- "items": {
5289
- "anyOf": [
5290
- {
5291
- "additionalProperties": false,
5292
- "properties": {
5293
- "key": {
5294
- "description": "The key used to access the value used for the preview.",
5295
- "markdownDescription": "The key used to access the value used for the preview.",
5296
- "type": "string"
5297
- }
5298
- },
5299
- "required": [
5300
- "key"
5301
- ],
5302
- "type": "object"
5303
- },
5304
- {
5305
- "type": "string"
5306
- },
5307
- {
5308
- "type": "boolean"
5309
- }
5310
- ]
5311
- },
5312
- "type": "array"
5313
- },
5314
- {
5315
- "type": "string"
5316
- },
5317
- {
5318
- "type": "boolean"
5319
- }
5320
- ],
5378
+ "$ref": "#/definitions/PreviewEntry",
5321
5379
  "description": "Controls the image shown per item.",
5322
5380
  "markdownDescription": "Controls the image shown per item."
5323
5381
  },
5324
5382
  "subtext": {
5325
- "anyOf": [
5326
- {
5327
- "items": {
5328
- "anyOf": [
5329
- {
5330
- "additionalProperties": false,
5331
- "properties": {
5332
- "key": {
5333
- "description": "The key used to access the value used for the preview.",
5334
- "markdownDescription": "The key used to access the value used for the preview.",
5335
- "type": "string"
5336
- }
5337
- },
5338
- "required": [
5339
- "key"
5340
- ],
5341
- "type": "object"
5342
- },
5343
- {
5344
- "type": "string"
5345
- },
5346
- {
5347
- "type": "boolean"
5348
- }
5349
- ]
5350
- },
5351
- "type": "array"
5352
- },
5353
- {
5354
- "type": "string"
5355
- },
5356
- {
5357
- "type": "boolean"
5358
- }
5359
- ],
5383
+ "$ref": "#/definitions/PreviewEntry",
5360
5384
  "description": "Controls the supporting text shown per item.",
5361
5385
  "markdownDescription": "Controls the supporting text shown per item."
5362
5386
  },
5363
5387
  "text": {
5364
- "anyOf": [
5365
- {
5366
- "items": {
5367
- "anyOf": [
5368
- {
5369
- "additionalProperties": false,
5370
- "properties": {
5371
- "key": {
5372
- "description": "The key used to access the value used for the preview.",
5373
- "markdownDescription": "The key used to access the value used for the preview.",
5374
- "type": "string"
5375
- }
5376
- },
5377
- "required": [
5378
- "key"
5379
- ],
5380
- "type": "object"
5381
- },
5382
- {
5383
- "type": "string"
5384
- },
5385
- {
5386
- "type": "boolean"
5387
- }
5388
- ]
5389
- },
5390
- "type": "array"
5391
- },
5392
- {
5393
- "type": "string"
5394
- },
5395
- {
5396
- "type": "boolean"
5397
- }
5398
- ],
5388
+ "$ref": "#/definitions/PreviewEntry",
5399
5389
  "description": "Controls the main text shown per item.",
5400
5390
  "markdownDescription": "Controls the main text shown per item."
5401
5391
  }
@@ -5406,7 +5396,6 @@
5406
5396
  "additionalProperties": false,
5407
5397
  "properties": {
5408
5398
  "collections": {
5409
- "default": "",
5410
5399
  "description": "Parent folder of all collections.",
5411
5400
  "markdownDescription": "Parent folder of all collections.",
5412
5401
  "type": "string"
@@ -5476,41 +5465,7 @@
5476
5465
  "markdownDescription": "Details for large image/icon preview per item."
5477
5466
  },
5478
5467
  "icon": {
5479
- "anyOf": [
5480
- {
5481
- "items": {
5482
- "anyOf": [
5483
- {
5484
- "additionalProperties": false,
5485
- "properties": {
5486
- "key": {
5487
- "description": "The key used to access the value used for the preview.",
5488
- "markdownDescription": "The key used to access the value used for the preview.",
5489
- "type": "string"
5490
- }
5491
- },
5492
- "required": [
5493
- "key"
5494
- ],
5495
- "type": "object"
5496
- },
5497
- {
5498
- "type": "string"
5499
- },
5500
- {
5501
- "type": "boolean"
5502
- }
5503
- ]
5504
- },
5505
- "type": "array"
5506
- },
5507
- {
5508
- "type": "string"
5509
- },
5510
- {
5511
- "type": "boolean"
5512
- }
5513
- ],
5468
+ "$ref": "#/definitions/PreviewEntry",
5514
5469
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5515
5470
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5516
5471
  },
@@ -5520,41 +5475,7 @@
5520
5475
  "type": "string"
5521
5476
  },
5522
5477
  "image": {
5523
- "anyOf": [
5524
- {
5525
- "items": {
5526
- "anyOf": [
5527
- {
5528
- "additionalProperties": false,
5529
- "properties": {
5530
- "key": {
5531
- "description": "The key used to access the value used for the preview.",
5532
- "markdownDescription": "The key used to access the value used for the preview.",
5533
- "type": "string"
5534
- }
5535
- },
5536
- "required": [
5537
- "key"
5538
- ],
5539
- "type": "object"
5540
- },
5541
- {
5542
- "type": "string"
5543
- },
5544
- {
5545
- "type": "boolean"
5546
- }
5547
- ]
5548
- },
5549
- "type": "array"
5550
- },
5551
- {
5552
- "type": "string"
5553
- },
5554
- {
5555
- "type": "boolean"
5556
- }
5557
- ],
5478
+ "$ref": "#/definitions/PreviewEntry",
5558
5479
  "description": "Controls the image shown per item.",
5559
5480
  "markdownDescription": "Controls the image shown per item."
5560
5481
  },
@@ -5567,86 +5488,44 @@
5567
5488
  "type": "array"
5568
5489
  },
5569
5490
  "subtext": {
5570
- "anyOf": [
5571
- {
5572
- "items": {
5573
- "anyOf": [
5574
- {
5575
- "additionalProperties": false,
5576
- "properties": {
5577
- "key": {
5578
- "description": "The key used to access the value used for the preview.",
5579
- "markdownDescription": "The key used to access the value used for the preview.",
5580
- "type": "string"
5581
- }
5582
- },
5583
- "required": [
5584
- "key"
5585
- ],
5586
- "type": "object"
5587
- },
5588
- {
5589
- "type": "string"
5590
- },
5591
- {
5592
- "type": "boolean"
5593
- }
5594
- ]
5595
- },
5596
- "type": "array"
5597
- },
5598
- {
5599
- "type": "string"
5600
- },
5601
- {
5602
- "type": "boolean"
5603
- }
5604
- ],
5491
+ "$ref": "#/definitions/PreviewEntry",
5605
5492
  "description": "Controls the supporting text shown per item.",
5606
5493
  "markdownDescription": "Controls the supporting text shown per item."
5607
5494
  },
5608
5495
  "text": {
5609
- "anyOf": [
5610
- {
5611
- "items": {
5612
- "anyOf": [
5613
- {
5614
- "additionalProperties": false,
5615
- "properties": {
5616
- "key": {
5617
- "description": "The key used to access the value used for the preview.",
5618
- "markdownDescription": "The key used to access the value used for the preview.",
5619
- "type": "string"
5620
- }
5621
- },
5622
- "required": [
5623
- "key"
5624
- ],
5625
- "type": "object"
5626
- },
5627
- {
5628
- "type": "string"
5629
- },
5630
- {
5631
- "type": "boolean"
5632
- }
5633
- ]
5634
- },
5635
- "type": "array"
5636
- },
5637
- {
5638
- "type": "string"
5639
- },
5640
- {
5641
- "type": "boolean"
5642
- }
5643
- ],
5496
+ "$ref": "#/definitions/PreviewEntry",
5644
5497
  "description": "Controls the main text shown per item.",
5645
5498
  "markdownDescription": "Controls the main text shown per item."
5646
5499
  }
5647
5500
  },
5648
5501
  "type": "object"
5649
5502
  },
5503
+ "PreviewEntry": {
5504
+ "anyOf": [
5505
+ {
5506
+ "items": {
5507
+ "anyOf": [
5508
+ {
5509
+ "$ref": "#/definitions/PreviewKeyEntry"
5510
+ },
5511
+ {
5512
+ "type": "string"
5513
+ },
5514
+ {
5515
+ "type": "boolean"
5516
+ }
5517
+ ]
5518
+ },
5519
+ "type": "array"
5520
+ },
5521
+ {
5522
+ "type": "string"
5523
+ },
5524
+ {
5525
+ "type": "boolean"
5526
+ }
5527
+ ]
5528
+ },
5650
5529
  "PreviewGallery": {
5651
5530
  "additionalProperties": false,
5652
5531
  "properties": {
@@ -5662,41 +5541,7 @@
5662
5541
  "type": "string"
5663
5542
  },
5664
5543
  "icon": {
5665
- "anyOf": [
5666
- {
5667
- "items": {
5668
- "anyOf": [
5669
- {
5670
- "additionalProperties": false,
5671
- "properties": {
5672
- "key": {
5673
- "description": "The key used to access the value used for the preview.",
5674
- "markdownDescription": "The key used to access the value used for the preview.",
5675
- "type": "string"
5676
- }
5677
- },
5678
- "required": [
5679
- "key"
5680
- ],
5681
- "type": "object"
5682
- },
5683
- {
5684
- "type": "string"
5685
- },
5686
- {
5687
- "type": "boolean"
5688
- }
5689
- ]
5690
- },
5691
- "type": "array"
5692
- },
5693
- {
5694
- "type": "string"
5695
- },
5696
- {
5697
- "type": "boolean"
5698
- }
5699
- ],
5544
+ "$ref": "#/definitions/PreviewEntry",
5700
5545
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5701
5546
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5702
5547
  },
@@ -5706,125 +5551,37 @@
5706
5551
  "type": "string"
5707
5552
  },
5708
5553
  "image": {
5709
- "anyOf": [
5710
- {
5711
- "items": {
5712
- "anyOf": [
5713
- {
5714
- "additionalProperties": false,
5715
- "properties": {
5716
- "key": {
5717
- "description": "The key used to access the value used for the preview.",
5718
- "markdownDescription": "The key used to access the value used for the preview.",
5719
- "type": "string"
5720
- }
5721
- },
5722
- "required": [
5723
- "key"
5724
- ],
5725
- "type": "object"
5726
- },
5727
- {
5728
- "type": "string"
5729
- },
5730
- {
5731
- "type": "boolean"
5732
- }
5733
- ]
5734
- },
5735
- "type": "array"
5736
- },
5737
- {
5738
- "type": "string"
5739
- },
5740
- {
5741
- "type": "boolean"
5742
- }
5743
- ],
5554
+ "$ref": "#/definitions/PreviewEntry",
5744
5555
  "description": "Controls the image shown per item.",
5745
5556
  "markdownDescription": "Controls the image shown per item."
5746
5557
  },
5747
5558
  "text": {
5748
- "anyOf": [
5749
- {
5750
- "items": {
5751
- "anyOf": [
5752
- {
5753
- "additionalProperties": false,
5754
- "properties": {
5755
- "key": {
5756
- "description": "The key used to access the value used for the preview.",
5757
- "markdownDescription": "The key used to access the value used for the preview.",
5758
- "type": "string"
5759
- }
5760
- },
5761
- "required": [
5762
- "key"
5763
- ],
5764
- "type": "object"
5765
- },
5766
- {
5767
- "type": "string"
5768
- },
5769
- {
5770
- "type": "boolean"
5771
- }
5772
- ]
5773
- },
5774
- "type": "array"
5775
- },
5776
- {
5777
- "type": "string"
5778
- },
5779
- {
5780
- "type": "boolean"
5781
- }
5782
- ],
5559
+ "$ref": "#/definitions/PreviewEntry",
5783
5560
  "description": "Controls the main text shown per item.",
5784
5561
  "markdownDescription": "Controls the main text shown per item."
5785
5562
  }
5786
5563
  },
5787
5564
  "type": "object"
5788
5565
  },
5566
+ "PreviewKeyEntry": {
5567
+ "additionalProperties": false,
5568
+ "properties": {
5569
+ "key": {
5570
+ "description": "The key used to access the value used for the preview.",
5571
+ "markdownDescription": "The key used to access the value used for the preview.",
5572
+ "type": "string"
5573
+ }
5574
+ },
5575
+ "required": [
5576
+ "key"
5577
+ ],
5578
+ "type": "object"
5579
+ },
5789
5580
  "PreviewMetadata": {
5790
5581
  "additionalProperties": false,
5791
5582
  "properties": {
5792
5583
  "icon": {
5793
- "anyOf": [
5794
- {
5795
- "items": {
5796
- "anyOf": [
5797
- {
5798
- "additionalProperties": false,
5799
- "properties": {
5800
- "key": {
5801
- "description": "The key used to access the value used for the preview.",
5802
- "markdownDescription": "The key used to access the value used for the preview.",
5803
- "type": "string"
5804
- }
5805
- },
5806
- "required": [
5807
- "key"
5808
- ],
5809
- "type": "object"
5810
- },
5811
- {
5812
- "type": "string"
5813
- },
5814
- {
5815
- "type": "boolean"
5816
- }
5817
- ]
5818
- },
5819
- "type": "array"
5820
- },
5821
- {
5822
- "type": "string"
5823
- },
5824
- {
5825
- "type": "boolean"
5826
- }
5827
- ],
5584
+ "$ref": "#/definitions/PreviewEntry",
5828
5585
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5829
5586
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5830
5587
  },
@@ -5834,80 +5591,12 @@
5834
5591
  "type": "string"
5835
5592
  },
5836
5593
  "image": {
5837
- "anyOf": [
5838
- {
5839
- "items": {
5840
- "anyOf": [
5841
- {
5842
- "additionalProperties": false,
5843
- "properties": {
5844
- "key": {
5845
- "description": "The key used to access the value used for the preview.",
5846
- "markdownDescription": "The key used to access the value used for the preview.",
5847
- "type": "string"
5848
- }
5849
- },
5850
- "required": [
5851
- "key"
5852
- ],
5853
- "type": "object"
5854
- },
5855
- {
5856
- "type": "string"
5857
- },
5858
- {
5859
- "type": "boolean"
5860
- }
5861
- ]
5862
- },
5863
- "type": "array"
5864
- },
5865
- {
5866
- "type": "string"
5867
- },
5868
- {
5869
- "type": "boolean"
5870
- }
5871
- ],
5594
+ "$ref": "#/definitions/PreviewEntry",
5872
5595
  "description": "Controls the image shown per item.",
5873
5596
  "markdownDescription": "Controls the image shown per item."
5874
5597
  },
5875
5598
  "text": {
5876
- "anyOf": [
5877
- {
5878
- "items": {
5879
- "anyOf": [
5880
- {
5881
- "additionalProperties": false,
5882
- "properties": {
5883
- "key": {
5884
- "description": "The key used to access the value used for the preview.",
5885
- "markdownDescription": "The key used to access the value used for the preview.",
5886
- "type": "string"
5887
- }
5888
- },
5889
- "required": [
5890
- "key"
5891
- ],
5892
- "type": "object"
5893
- },
5894
- {
5895
- "type": "string"
5896
- },
5897
- {
5898
- "type": "boolean"
5899
- }
5900
- ]
5901
- },
5902
- "type": "array"
5903
- },
5904
- {
5905
- "type": "string"
5906
- },
5907
- {
5908
- "type": "boolean"
5909
- }
5910
- ],
5599
+ "$ref": "#/definitions/PreviewEntry",
5911
5600
  "description": "Controls the main text shown per item.",
5912
5601
  "markdownDescription": "Controls the main text shown per item."
5913
5602
  }
@@ -6196,8 +5885,18 @@
6196
5885
  "type": "string"
6197
5886
  },
6198
5887
  "code": {
6199
- "description": "Enables a control to set selected text to inline code, and unselected blocks of text to code blocks.",
6200
- "markdownDescription": "Enables a control to set selected text to inline code, and unselected blocks of text to code\nblocks.",
5888
+ "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5889
+ "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5890
+ "type": "boolean"
5891
+ },
5892
+ "code_block": {
5893
+ "description": "Enables a control to insert a code block.",
5894
+ "markdownDescription": "Enables a control to insert a code block.",
5895
+ "type": "boolean"
5896
+ },
5897
+ "code_inline": {
5898
+ "description": "Enables a control to create an inline code element, containing any selected text.",
5899
+ "markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
6201
5900
  "type": "boolean"
6202
5901
  },
6203
5902
  "copyformatting": {
@@ -6422,16 +6121,18 @@
6422
6121
  "properties": {
6423
6122
  "_array_structures": {
6424
6123
  "additionalProperties": {},
6425
- "description": "[DEPRECATED] Now known as _structures.",
6426
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
6124
+ "deprecated": "Use _structures instead.",
6125
+ "description": "Now known as _structures.",
6126
+ "markdownDescription": "Now known as _structures.",
6427
6127
  "type": "object"
6428
6128
  },
6429
6129
  "_comments": {
6430
6130
  "additionalProperties": {
6431
6131
  "type": "string"
6432
6132
  },
6433
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
6434
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
6133
+ "deprecated": "Use _inputs instead.",
6134
+ "description": "Now part of _inputs.*.comment.",
6135
+ "markdownDescription": "Now part of _inputs.*.comment.",
6435
6136
  "type": "object"
6436
6137
  },
6437
6138
  "_editables": {
@@ -6460,8 +6161,9 @@
6460
6161
  "additionalProperties": {},
6461
6162
  "type": "object"
6462
6163
  },
6463
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
6464
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
6164
+ "deprecated": "Use _inputs instead.",
6165
+ "description": "Now part of _inputs.*.options.",
6166
+ "markdownDescription": "Now part of _inputs.*.options.",
6465
6167
  "type": "object"
6466
6168
  },
6467
6169
  "_select_data": {
@@ -6659,80 +6361,12 @@
6659
6361
  "additionalProperties": false,
6660
6362
  "properties": {
6661
6363
  "icon": {
6662
- "anyOf": [
6663
- {
6664
- "items": {
6665
- "anyOf": [
6666
- {
6667
- "additionalProperties": false,
6668
- "properties": {
6669
- "key": {
6670
- "description": "The key used to access the value used for the preview.",
6671
- "markdownDescription": "The key used to access the value used for the preview.",
6672
- "type": "string"
6673
- }
6674
- },
6675
- "required": [
6676
- "key"
6677
- ],
6678
- "type": "object"
6679
- },
6680
- {
6681
- "type": "string"
6682
- },
6683
- {
6684
- "type": "boolean"
6685
- }
6686
- ]
6687
- },
6688
- "type": "array"
6689
- },
6690
- {
6691
- "type": "string"
6692
- },
6693
- {
6694
- "type": "boolean"
6695
- }
6696
- ],
6364
+ "$ref": "#/definitions/PreviewEntry",
6697
6365
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
6698
6366
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
6699
6367
  },
6700
6368
  "text": {
6701
- "anyOf": [
6702
- {
6703
- "items": {
6704
- "anyOf": [
6705
- {
6706
- "additionalProperties": false,
6707
- "properties": {
6708
- "key": {
6709
- "description": "The key used to access the value used for the preview.",
6710
- "markdownDescription": "The key used to access the value used for the preview.",
6711
- "type": "string"
6712
- }
6713
- },
6714
- "required": [
6715
- "key"
6716
- ],
6717
- "type": "object"
6718
- },
6719
- {
6720
- "type": "string"
6721
- },
6722
- {
6723
- "type": "boolean"
6724
- }
6725
- ]
6726
- },
6727
- "type": "array"
6728
- },
6729
- {
6730
- "type": "string"
6731
- },
6732
- {
6733
- "type": "boolean"
6734
- }
6735
- ],
6369
+ "$ref": "#/definitions/PreviewEntry",
6736
6370
  "description": "Controls the main text shown per item.",
6737
6371
  "markdownDescription": "Controls the main text shown per item."
6738
6372
  }
@@ -6842,6 +6476,354 @@
6842
6476
  },
6843
6477
  "type": "object"
6844
6478
  },
6479
+ "SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
6480
+ "additionalProperties": false,
6481
+ "properties": {
6482
+ "exclude": {
6483
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6484
+ "items": {
6485
+ "enum": [
6486
+ "_cc_jekyll_unknown_paired_tag",
6487
+ "_cc_jekyll_unknown_tag",
6488
+ "jekyll_highlight",
6489
+ "_cc_jekyll_template",
6490
+ "jekyll_raw",
6491
+ "jekyll_link",
6492
+ "jekyll_post_url"
6493
+ ],
6494
+ "type": "string"
6495
+ },
6496
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6497
+ "type": "array"
6498
+ },
6499
+ "include": {
6500
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6501
+ "items": {
6502
+ "enum": [
6503
+ "_cc_jekyll_unknown_paired_tag",
6504
+ "_cc_jekyll_unknown_tag",
6505
+ "jekyll_highlight",
6506
+ "_cc_jekyll_template",
6507
+ "jekyll_raw",
6508
+ "jekyll_link",
6509
+ "jekyll_post_url"
6510
+ ],
6511
+ "type": "string"
6512
+ },
6513
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6514
+ "type": "array"
6515
+ }
6516
+ },
6517
+ "type": "object"
6518
+ },
6519
+ "SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
6520
+ "additionalProperties": false,
6521
+ "properties": {
6522
+ "exclude": {
6523
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6524
+ "items": {
6525
+ "enum": [
6526
+ "docusaurus_mdx_admonition",
6527
+ "docusaurus_mdx_tabs",
6528
+ "docusaurus_mdx_truncate",
6529
+ "docusaurus_mdx_codeblock"
6530
+ ],
6531
+ "type": "string"
6532
+ },
6533
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6534
+ "type": "array"
6535
+ },
6536
+ "include": {
6537
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6538
+ "items": {
6539
+ "enum": [
6540
+ "docusaurus_mdx_admonition",
6541
+ "docusaurus_mdx_tabs",
6542
+ "docusaurus_mdx_truncate",
6543
+ "docusaurus_mdx_codeblock"
6544
+ ],
6545
+ "type": "string"
6546
+ },
6547
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6548
+ "type": "array"
6549
+ }
6550
+ },
6551
+ "type": "object"
6552
+ },
6553
+ "SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
6554
+ "additionalProperties": false,
6555
+ "properties": {
6556
+ "exclude": {
6557
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6558
+ "items": {
6559
+ "enum": [
6560
+ "eleventy_liquid_raw",
6561
+ "_cc_eleventy_liquid_unknown_paired_shortcode",
6562
+ "_cc_eleventy_liquid_unknown_shortcode",
6563
+ "_cc_eleventy_liquid_template"
6564
+ ],
6565
+ "type": "string"
6566
+ },
6567
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6568
+ "type": "array"
6569
+ },
6570
+ "include": {
6571
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6572
+ "items": {
6573
+ "enum": [
6574
+ "eleventy_liquid_raw",
6575
+ "_cc_eleventy_liquid_unknown_paired_shortcode",
6576
+ "_cc_eleventy_liquid_unknown_shortcode",
6577
+ "_cc_eleventy_liquid_template"
6578
+ ],
6579
+ "type": "string"
6580
+ },
6581
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6582
+ "type": "array"
6583
+ }
6584
+ },
6585
+ "type": "object"
6586
+ },
6587
+ "SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
6588
+ "additionalProperties": false,
6589
+ "properties": {
6590
+ "exclude": {
6591
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6592
+ "items": {
6593
+ "enum": [
6594
+ "eleventy_nunjucks_raw",
6595
+ "eleventy_nunjucks_verbatim",
6596
+ "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6597
+ "_cc_eleventy_nunjucks_unknown_shortcode",
6598
+ "_cc_eleventy_nunjucks_template"
6599
+ ],
6600
+ "type": "string"
6601
+ },
6602
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6603
+ "type": "array"
6604
+ },
6605
+ "include": {
6606
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6607
+ "items": {
6608
+ "enum": [
6609
+ "eleventy_nunjucks_raw",
6610
+ "eleventy_nunjucks_verbatim",
6611
+ "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6612
+ "_cc_eleventy_nunjucks_unknown_shortcode",
6613
+ "_cc_eleventy_nunjucks_template"
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<(\"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\")>": {
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
+ "hugo_summary_divider",
6631
+ "hugo_highlight",
6632
+ "hugo_figure",
6633
+ "hugo_gist",
6634
+ "hugo_instagram",
6635
+ "hugo_param",
6636
+ "hugo_ref",
6637
+ "hugo_relref",
6638
+ "hugo_tweet",
6639
+ "hugo_vimeo",
6640
+ "hugo_youtube",
6641
+ "_cc_hugo_unknown_paired",
6642
+ "_cc_hugo_unknown",
6643
+ "_cc_hugo_unknown_paired_processed",
6644
+ "_cc_hugo_unknown_processed"
6645
+ ],
6646
+ "type": "string"
6647
+ },
6648
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6649
+ "type": "array"
6650
+ },
6651
+ "include": {
6652
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6653
+ "items": {
6654
+ "enum": [
6655
+ "hugo_summary_divider",
6656
+ "hugo_highlight",
6657
+ "hugo_figure",
6658
+ "hugo_gist",
6659
+ "hugo_instagram",
6660
+ "hugo_param",
6661
+ "hugo_ref",
6662
+ "hugo_relref",
6663
+ "hugo_tweet",
6664
+ "hugo_vimeo",
6665
+ "hugo_youtube",
6666
+ "_cc_hugo_unknown_paired",
6667
+ "_cc_hugo_unknown",
6668
+ "_cc_hugo_unknown_paired_processed",
6669
+ "_cc_hugo_unknown_processed"
6670
+ ],
6671
+ "type": "string"
6672
+ },
6673
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6674
+ "type": "array"
6675
+ }
6676
+ },
6677
+ "type": "object"
6678
+ },
6679
+ "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\")>": {
6680
+ "additionalProperties": false,
6681
+ "properties": {
6682
+ "exclude": {
6683
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6684
+ "items": {
6685
+ "enum": [
6686
+ "import",
6687
+ "_cc_mdx_unknown_export",
6688
+ "_cc_mdx_unknown_export_expression",
6689
+ "_cc_mdx_unknown_export_default",
6690
+ "_cc_mdx_unknown_template",
6691
+ "_cc_mdx_paired_unknown",
6692
+ "_cc_mdx_unknown"
6693
+ ],
6694
+ "type": "string"
6695
+ },
6696
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6697
+ "type": "array"
6698
+ },
6699
+ "include": {
6700
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6701
+ "items": {
6702
+ "enum": [
6703
+ "import",
6704
+ "_cc_mdx_unknown_export",
6705
+ "_cc_mdx_unknown_export_expression",
6706
+ "_cc_mdx_unknown_export_default",
6707
+ "_cc_mdx_unknown_template",
6708
+ "_cc_mdx_paired_unknown",
6709
+ "_cc_mdx_unknown"
6710
+ ],
6711
+ "type": "string"
6712
+ },
6713
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6714
+ "type": "array"
6715
+ }
6716
+ },
6717
+ "type": "object"
6718
+ },
6719
+ "SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
6720
+ "additionalProperties": false,
6721
+ "properties": {
6722
+ "exclude": {
6723
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6724
+ "items": {
6725
+ "enum": [
6726
+ "markdoc_id_annotation",
6727
+ "markdoc_class_annotation",
6728
+ "markdoc_table",
6729
+ "_cc_markdoc_unknown_tag",
6730
+ "_cc_markdoc_unknown_paired_tag",
6731
+ "_cc_markdoc_unknown_template"
6732
+ ],
6733
+ "type": "string"
6734
+ },
6735
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6736
+ "type": "array"
6737
+ },
6738
+ "include": {
6739
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6740
+ "items": {
6741
+ "enum": [
6742
+ "markdoc_id_annotation",
6743
+ "markdoc_class_annotation",
6744
+ "markdoc_table",
6745
+ "_cc_markdoc_unknown_tag",
6746
+ "_cc_markdoc_unknown_paired_tag",
6747
+ "_cc_markdoc_unknown_template"
6748
+ ],
6749
+ "type": "string"
6750
+ },
6751
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6752
+ "type": "array"
6753
+ }
6754
+ },
6755
+ "type": "object"
6756
+ },
6757
+ "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\")>": {
6758
+ "additionalProperties": false,
6759
+ "properties": {
6760
+ "exclude": {
6761
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6762
+ "items": {
6763
+ "enum": [
6764
+ "python_markdown_abbreviation",
6765
+ "python_markdown_admonition",
6766
+ "python_markdown_arithmatex",
6767
+ "python_markdown_attribute_list",
6768
+ "python_markdown_code_block",
6769
+ "python_markdown_collapsible_admonition",
6770
+ "python_markdown_tabs",
6771
+ "python_markdown_footnote",
6772
+ "python_markdown_footnote_marker",
6773
+ "python_markdown_icon",
6774
+ "python_markdown_image",
6775
+ "python_markdown_inline_arithmatex",
6776
+ "python_markdown_inline_code",
6777
+ "python_markdown_link",
6778
+ "python_markdown_reference_image",
6779
+ "python_markdown_reference_template_image",
6780
+ "python_markdown_reference_link",
6781
+ "python_markdown_reference",
6782
+ "python_markdown_reference_template",
6783
+ "python_markdown_block_snippet",
6784
+ "_cc_python_markdown_unknown_snippet",
6785
+ "_cc_python_markdown_unknown_markdown_in_html"
6786
+ ],
6787
+ "type": "string"
6788
+ },
6789
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6790
+ "type": "array"
6791
+ },
6792
+ "include": {
6793
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6794
+ "items": {
6795
+ "enum": [
6796
+ "python_markdown_abbreviation",
6797
+ "python_markdown_admonition",
6798
+ "python_markdown_arithmatex",
6799
+ "python_markdown_attribute_list",
6800
+ "python_markdown_code_block",
6801
+ "python_markdown_collapsible_admonition",
6802
+ "python_markdown_tabs",
6803
+ "python_markdown_footnote",
6804
+ "python_markdown_footnote_marker",
6805
+ "python_markdown_icon",
6806
+ "python_markdown_image",
6807
+ "python_markdown_inline_arithmatex",
6808
+ "python_markdown_inline_code",
6809
+ "python_markdown_link",
6810
+ "python_markdown_reference_image",
6811
+ "python_markdown_reference_template_image",
6812
+ "python_markdown_reference_link",
6813
+ "python_markdown_reference",
6814
+ "python_markdown_reference_template",
6815
+ "python_markdown_block_snippet",
6816
+ "_cc_python_markdown_unknown_snippet",
6817
+ "_cc_python_markdown_unknown_markdown_in_html"
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
+ },
6845
6827
  "SnippetsImports": {
6846
6828
  "additionalProperties": false,
6847
6829
  "properties": {
@@ -6851,38 +6833,7 @@
6851
6833
  "type": "boolean"
6852
6834
  },
6853
6835
  {
6854
- "additionalProperties": false,
6855
- "properties": {
6856
- "exclude": {
6857
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6858
- "items": {
6859
- "enum": [
6860
- "docusaurus_mdx_admonition",
6861
- "docusaurus_mdx_tabs",
6862
- "docusaurus_mdx_truncate",
6863
- "docusaurus_mdx_codeblock"
6864
- ],
6865
- "type": "string"
6866
- },
6867
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6868
- "type": "array"
6869
- },
6870
- "include": {
6871
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6872
- "items": {
6873
- "enum": [
6874
- "docusaurus_mdx_admonition",
6875
- "docusaurus_mdx_tabs",
6876
- "docusaurus_mdx_truncate",
6877
- "docusaurus_mdx_codeblock"
6878
- ],
6879
- "type": "string"
6880
- },
6881
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6882
- "type": "array"
6883
- }
6884
- },
6885
- "type": "object"
6836
+ "$ref": "#/definitions/SnippetsImport%3C(%22docusaurus_mdx_admonition%22%7C%22docusaurus_mdx_tabs%22%7C%22docusaurus_mdx_truncate%22%7C%22docusaurus_mdx_codeblock%22)%3E"
6886
6837
  }
6887
6838
  ],
6888
6839
  "description": "Default snippets for Docusaurus SSG.",
@@ -6894,38 +6845,7 @@
6894
6845
  "type": "boolean"
6895
6846
  },
6896
6847
  {
6897
- "additionalProperties": false,
6898
- "properties": {
6899
- "exclude": {
6900
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6901
- "items": {
6902
- "enum": [
6903
- "eleventy_liquid_raw",
6904
- "_cc_eleventy_liquid_unknown_paired_shortcode",
6905
- "_cc_eleventy_liquid_unknown_shortcode",
6906
- "_cc_eleventy_liquid_template"
6907
- ],
6908
- "type": "string"
6909
- },
6910
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6911
- "type": "array"
6912
- },
6913
- "include": {
6914
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6915
- "items": {
6916
- "enum": [
6917
- "eleventy_liquid_raw",
6918
- "_cc_eleventy_liquid_unknown_paired_shortcode",
6919
- "_cc_eleventy_liquid_unknown_shortcode",
6920
- "_cc_eleventy_liquid_template"
6921
- ],
6922
- "type": "string"
6923
- },
6924
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6925
- "type": "array"
6926
- }
6927
- },
6928
- "type": "object"
6848
+ "$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"
6929
6849
  }
6930
6850
  ],
6931
6851
  "description": "Default snippets for Eleventy SSG Liquid files.",
@@ -6937,40 +6857,7 @@
6937
6857
  "type": "boolean"
6938
6858
  },
6939
6859
  {
6940
- "additionalProperties": false,
6941
- "properties": {
6942
- "exclude": {
6943
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6944
- "items": {
6945
- "enum": [
6946
- "eleventy_nunjucks_raw",
6947
- "eleventy_nunjucks_verbatim",
6948
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6949
- "_cc_eleventy_nunjucks_unknown_shortcode",
6950
- "_cc_eleventy_nunjucks_template"
6951
- ],
6952
- "type": "string"
6953
- },
6954
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6955
- "type": "array"
6956
- },
6957
- "include": {
6958
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6959
- "items": {
6960
- "enum": [
6961
- "eleventy_nunjucks_raw",
6962
- "eleventy_nunjucks_verbatim",
6963
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6964
- "_cc_eleventy_nunjucks_unknown_shortcode",
6965
- "_cc_eleventy_nunjucks_template"
6966
- ],
6967
- "type": "string"
6968
- },
6969
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6970
- "type": "array"
6971
- }
6972
- },
6973
- "type": "object"
6860
+ "$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"
6974
6861
  }
6975
6862
  ],
6976
6863
  "description": "Default snippets for Eleventy SSG Nunjucks files.",
@@ -6982,60 +6869,7 @@
6982
6869
  "type": "boolean"
6983
6870
  },
6984
6871
  {
6985
- "additionalProperties": false,
6986
- "properties": {
6987
- "exclude": {
6988
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6989
- "items": {
6990
- "enum": [
6991
- "hugo_summary_divider",
6992
- "hugo_highlight",
6993
- "hugo_figure",
6994
- "hugo_gist",
6995
- "hugo_instagram",
6996
- "hugo_param",
6997
- "hugo_ref",
6998
- "hugo_relref",
6999
- "hugo_tweet",
7000
- "hugo_vimeo",
7001
- "hugo_youtube",
7002
- "_cc_hugo_unknown_paired",
7003
- "_cc_hugo_unknown",
7004
- "_cc_hugo_unknown_paired_processed",
7005
- "_cc_hugo_unknown_processed"
7006
- ],
7007
- "type": "string"
7008
- },
7009
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7010
- "type": "array"
7011
- },
7012
- "include": {
7013
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7014
- "items": {
7015
- "enum": [
7016
- "hugo_summary_divider",
7017
- "hugo_highlight",
7018
- "hugo_figure",
7019
- "hugo_gist",
7020
- "hugo_instagram",
7021
- "hugo_param",
7022
- "hugo_ref",
7023
- "hugo_relref",
7024
- "hugo_tweet",
7025
- "hugo_vimeo",
7026
- "hugo_youtube",
7027
- "_cc_hugo_unknown_paired",
7028
- "_cc_hugo_unknown",
7029
- "_cc_hugo_unknown_paired_processed",
7030
- "_cc_hugo_unknown_processed"
7031
- ],
7032
- "type": "string"
7033
- },
7034
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7035
- "type": "array"
7036
- }
7037
- },
7038
- "type": "object"
6872
+ "$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"
7039
6873
  }
7040
6874
  ],
7041
6875
  "description": "Default snippets for Hugo SSG.",
@@ -7047,44 +6881,7 @@
7047
6881
  "type": "boolean"
7048
6882
  },
7049
6883
  {
7050
- "additionalProperties": false,
7051
- "properties": {
7052
- "exclude": {
7053
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7054
- "items": {
7055
- "enum": [
7056
- "_cc_jekyll_unknown_paired_tag",
7057
- "_cc_jekyll_unknown_tag",
7058
- "jekyll_highlight",
7059
- "_cc_jekyll_template",
7060
- "jekyll_raw",
7061
- "jekyll_link",
7062
- "jekyll_post_url"
7063
- ],
7064
- "type": "string"
7065
- },
7066
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7067
- "type": "array"
7068
- },
7069
- "include": {
7070
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7071
- "items": {
7072
- "enum": [
7073
- "_cc_jekyll_unknown_paired_tag",
7074
- "_cc_jekyll_unknown_tag",
7075
- "jekyll_highlight",
7076
- "_cc_jekyll_template",
7077
- "jekyll_raw",
7078
- "jekyll_link",
7079
- "jekyll_post_url"
7080
- ],
7081
- "type": "string"
7082
- },
7083
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7084
- "type": "array"
7085
- }
7086
- },
7087
- "type": "object"
6884
+ "$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"
7088
6885
  }
7089
6886
  ],
7090
6887
  "description": "Default snippets for Jekyll SSG.",
@@ -7096,42 +6893,7 @@
7096
6893
  "type": "boolean"
7097
6894
  },
7098
6895
  {
7099
- "additionalProperties": false,
7100
- "properties": {
7101
- "exclude": {
7102
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7103
- "items": {
7104
- "enum": [
7105
- "markdoc_id_annotation",
7106
- "markdoc_class_annotation",
7107
- "markdoc_table",
7108
- "_cc_markdoc_unknown_tag",
7109
- "_cc_markdoc_unknown_paired_tag",
7110
- "_cc_markdoc_unknown_template"
7111
- ],
7112
- "type": "string"
7113
- },
7114
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7115
- "type": "array"
7116
- },
7117
- "include": {
7118
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7119
- "items": {
7120
- "enum": [
7121
- "markdoc_id_annotation",
7122
- "markdoc_class_annotation",
7123
- "markdoc_table",
7124
- "_cc_markdoc_unknown_tag",
7125
- "_cc_markdoc_unknown_paired_tag",
7126
- "_cc_markdoc_unknown_template"
7127
- ],
7128
- "type": "string"
7129
- },
7130
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7131
- "type": "array"
7132
- }
7133
- },
7134
- "type": "object"
6896
+ "$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"
7135
6897
  }
7136
6898
  ],
7137
6899
  "description": "Default snippets for Markdoc-based content.",
@@ -7143,44 +6905,7 @@
7143
6905
  "type": "boolean"
7144
6906
  },
7145
6907
  {
7146
- "additionalProperties": false,
7147
- "properties": {
7148
- "exclude": {
7149
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7150
- "items": {
7151
- "enum": [
7152
- "import",
7153
- "_cc_mdx_unknown_export",
7154
- "_cc_mdx_unknown_export_expression",
7155
- "_cc_mdx_unknown_export_default",
7156
- "_cc_mdx_unknown_template",
7157
- "_cc_mdx_paired_unknown",
7158
- "_cc_mdx_unknown"
7159
- ],
7160
- "type": "string"
7161
- },
7162
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7163
- "type": "array"
7164
- },
7165
- "include": {
7166
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7167
- "items": {
7168
- "enum": [
7169
- "import",
7170
- "_cc_mdx_unknown_export",
7171
- "_cc_mdx_unknown_export_expression",
7172
- "_cc_mdx_unknown_export_default",
7173
- "_cc_mdx_unknown_template",
7174
- "_cc_mdx_paired_unknown",
7175
- "_cc_mdx_unknown"
7176
- ],
7177
- "type": "string"
7178
- },
7179
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7180
- "type": "array"
7181
- }
7182
- },
7183
- "type": "object"
6908
+ "$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"
7184
6909
  }
7185
6910
  ],
7186
6911
  "description": "Default snippets for MDX-based content.",
@@ -7192,74 +6917,7 @@
7192
6917
  "type": "boolean"
7193
6918
  },
7194
6919
  {
7195
- "additionalProperties": false,
7196
- "properties": {
7197
- "exclude": {
7198
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7199
- "items": {
7200
- "enum": [
7201
- "python_markdown_abbreviation",
7202
- "python_markdown_admonition",
7203
- "python_markdown_arithmatex",
7204
- "python_markdown_attribute_list",
7205
- "python_markdown_code_block",
7206
- "python_markdown_collapsible_admonition",
7207
- "python_markdown_tabs",
7208
- "python_markdown_footnote",
7209
- "python_markdown_footnote_marker",
7210
- "python_markdown_icon",
7211
- "python_markdown_image",
7212
- "python_markdown_inline_arithmatex",
7213
- "python_markdown_inline_code",
7214
- "python_markdown_link",
7215
- "python_markdown_reference_image",
7216
- "python_markdown_reference_template_image",
7217
- "python_markdown_reference_link",
7218
- "python_markdown_reference",
7219
- "python_markdown_reference_template",
7220
- "python_markdown_block_snippet",
7221
- "_cc_python_markdown_unknown_snippet",
7222
- "_cc_python_markdown_unknown_markdown_in_html"
7223
- ],
7224
- "type": "string"
7225
- },
7226
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7227
- "type": "array"
7228
- },
7229
- "include": {
7230
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7231
- "items": {
7232
- "enum": [
7233
- "python_markdown_abbreviation",
7234
- "python_markdown_admonition",
7235
- "python_markdown_arithmatex",
7236
- "python_markdown_attribute_list",
7237
- "python_markdown_code_block",
7238
- "python_markdown_collapsible_admonition",
7239
- "python_markdown_tabs",
7240
- "python_markdown_footnote",
7241
- "python_markdown_footnote_marker",
7242
- "python_markdown_icon",
7243
- "python_markdown_image",
7244
- "python_markdown_inline_arithmatex",
7245
- "python_markdown_inline_code",
7246
- "python_markdown_link",
7247
- "python_markdown_reference_image",
7248
- "python_markdown_reference_template_image",
7249
- "python_markdown_reference_link",
7250
- "python_markdown_reference",
7251
- "python_markdown_reference_template",
7252
- "python_markdown_block_snippet",
7253
- "_cc_python_markdown_unknown_snippet",
7254
- "_cc_python_markdown_unknown_markdown_in_html"
7255
- ],
7256
- "type": "string"
7257
- },
7258
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7259
- "type": "array"
7260
- }
7261
- },
7262
- "type": "object"
6920
+ "$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"
7263
6921
  }
7264
6922
  ],
7265
6923
  "description": "Default snippets for content using Python markdown extensions.",
@@ -7338,10 +6996,10 @@
7338
6996
  "type": "number"
7339
6997
  },
7340
6998
  "theme": {
6999
+ "$ref": "#/definitions/Theme",
7341
7000
  "default": "monokai",
7342
7001
  "description": "Changes the color scheme for syntax highlighting in the editor.",
7343
- "markdownDescription": "Changes the color scheme for syntax highlighting in the editor.",
7344
- "type": "string"
7002
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
7345
7003
  }
7346
7004
  },
7347
7005
  "type": "object"
@@ -7839,6 +7497,49 @@
7839
7497
  },
7840
7498
  "type": "object"
7841
7499
  },
7500
+ "Theme": {
7501
+ "enum": [
7502
+ "ambiance",
7503
+ "chaos",
7504
+ "chrome",
7505
+ "clouds",
7506
+ "clouds_midnight",
7507
+ "cobalt",
7508
+ "crimson_editor",
7509
+ "dawn",
7510
+ "dracula",
7511
+ "dreamweaver",
7512
+ "eclipse",
7513
+ "github",
7514
+ "gob",
7515
+ "gruvbox",
7516
+ "idle_fingers",
7517
+ "iplastic",
7518
+ "katzenmilch",
7519
+ "kr_theme",
7520
+ "kuroir",
7521
+ "merbivore",
7522
+ "merbivore_soft",
7523
+ "mono_industrial",
7524
+ "monokai",
7525
+ "nord_dark",
7526
+ "pastel_on_dark",
7527
+ "solarized_dark",
7528
+ "solarized_light",
7529
+ "sqlserver",
7530
+ "terminal",
7531
+ "textmate",
7532
+ "tomorrow",
7533
+ "tomorrow_night",
7534
+ "tomorrow_night_blue",
7535
+ "tomorrow_night_bright",
7536
+ "tomorrow_night_eighties",
7537
+ "twilight",
7538
+ "vibrant_ink",
7539
+ "xcode"
7540
+ ],
7541
+ "type": "string"
7542
+ },
7842
7543
  "Timezone": {
7843
7544
  "enum": [
7844
7545
  "Africa/Abidjan",