@cloudcannon/configuration-types 0.0.9 → 0.0.11
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/build/cloudcannon-config-eleventy.json +390 -77
- package/build/cloudcannon-config-hugo.json +390 -77
- package/build/cloudcannon-config-jekyll.json +390 -77
- package/build/cloudcannon-config-reader.json +415 -105
- package/build/cloudcannon-config.json +325 -94
- package/package.json +1 -1
- package/src/build-coupled.d.ts +47 -4
- package/src/configuration.d.ts +27 -65
|
@@ -163,7 +163,8 @@
|
|
|
163
163
|
"right",
|
|
164
164
|
"space right",
|
|
165
165
|
"below",
|
|
166
|
-
"newline below"
|
|
166
|
+
"newline below",
|
|
167
|
+
"right-of-prefix"
|
|
167
168
|
],
|
|
168
169
|
"type": "string"
|
|
169
170
|
},
|
|
@@ -401,7 +402,7 @@
|
|
|
401
402
|
"type": "boolean"
|
|
402
403
|
},
|
|
403
404
|
"paths": {
|
|
404
|
-
"$ref": "#/definitions/
|
|
405
|
+
"$ref": "#/definitions/Paths",
|
|
405
406
|
"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`.",
|
|
406
407
|
"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`."
|
|
407
408
|
},
|
|
@@ -715,6 +716,70 @@
|
|
|
715
716
|
},
|
|
716
717
|
"type": "object"
|
|
717
718
|
},
|
|
719
|
+
"BuildCoupledPaths": {
|
|
720
|
+
"additionalProperties": false,
|
|
721
|
+
"properties": {
|
|
722
|
+
"collections": {
|
|
723
|
+
"description": "Parent folder of all collections.",
|
|
724
|
+
"markdownDescription": "Parent folder of all collections.",
|
|
725
|
+
"type": "string"
|
|
726
|
+
},
|
|
727
|
+
"dam_static": {
|
|
728
|
+
"default": "",
|
|
729
|
+
"description": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
730
|
+
"markdownDescription": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM\nUploads_ path when CloudCannon outputs the URL of an asset.",
|
|
731
|
+
"type": "string"
|
|
732
|
+
},
|
|
733
|
+
"dam_uploads": {
|
|
734
|
+
"default": "",
|
|
735
|
+
"description": "Default location of newly uploaded DAM files.",
|
|
736
|
+
"markdownDescription": "Default location of newly uploaded DAM files.",
|
|
737
|
+
"type": "string"
|
|
738
|
+
},
|
|
739
|
+
"dam_uploads_filename": {
|
|
740
|
+
"description": "Filename template for newly uploaded DAM files.",
|
|
741
|
+
"markdownDescription": "Filename template for newly uploaded DAM files.",
|
|
742
|
+
"type": "string"
|
|
743
|
+
},
|
|
744
|
+
"data": {
|
|
745
|
+
"description": "Parent folder of all site data files.",
|
|
746
|
+
"markdownDescription": "Parent folder of all site data files.",
|
|
747
|
+
"type": "string"
|
|
748
|
+
},
|
|
749
|
+
"includes": {
|
|
750
|
+
"description": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
751
|
+
"markdownDescription": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and\nEleventy sites_.",
|
|
752
|
+
"type": "string"
|
|
753
|
+
},
|
|
754
|
+
"layouts": {
|
|
755
|
+
"description": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
756
|
+
"markdownDescription": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
757
|
+
"type": "string"
|
|
758
|
+
},
|
|
759
|
+
"static": {
|
|
760
|
+
"description": "Location of assets that are statically copied to the output site. This prefix will be removed from the _Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
761
|
+
"markdownDescription": "Location of assets that are statically copied to the output site. This prefix will be removed\nfrom the _Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
762
|
+
"type": "string"
|
|
763
|
+
},
|
|
764
|
+
"uploads": {
|
|
765
|
+
"default": "uploads",
|
|
766
|
+
"description": "Default location of newly uploaded site files.",
|
|
767
|
+
"markdownDescription": "Default location of newly uploaded site files.",
|
|
768
|
+
"type": "string"
|
|
769
|
+
},
|
|
770
|
+
"uploads_filename": {
|
|
771
|
+
"description": "Filename template for newly uploaded site files.",
|
|
772
|
+
"markdownDescription": "Filename template for newly uploaded site files.",
|
|
773
|
+
"type": "string"
|
|
774
|
+
},
|
|
775
|
+
"uploads_use_relative_path": {
|
|
776
|
+
"description": "When set to true, CloudCannon will reference files relative to the path of the file they were uploaded to.",
|
|
777
|
+
"markdownDescription": "When set to true, CloudCannon will reference files relative to the path of the file they were\nuploaded to.",
|
|
778
|
+
"type": "boolean"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"type": "object"
|
|
782
|
+
},
|
|
718
783
|
"ChoiceInput": {
|
|
719
784
|
"additionalProperties": false,
|
|
720
785
|
"properties": {
|
|
@@ -1589,7 +1654,7 @@
|
|
|
1589
1654
|
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
1590
1655
|
},
|
|
1591
1656
|
"paths": {
|
|
1592
|
-
"$ref": "#/definitions/
|
|
1657
|
+
"$ref": "#/definitions/Paths",
|
|
1593
1658
|
"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`.",
|
|
1594
1659
|
"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`."
|
|
1595
1660
|
}
|
|
@@ -3798,7 +3863,7 @@
|
|
|
3798
3863
|
"type": "string"
|
|
3799
3864
|
},
|
|
3800
3865
|
"paths": {
|
|
3801
|
-
"$ref": "#/definitions/
|
|
3866
|
+
"$ref": "#/definitions/Paths",
|
|
3802
3867
|
"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`.",
|
|
3803
3868
|
"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`."
|
|
3804
3869
|
},
|
|
@@ -3993,7 +4058,7 @@
|
|
|
3993
4058
|
"type": "string"
|
|
3994
4059
|
},
|
|
3995
4060
|
"paths": {
|
|
3996
|
-
"$ref": "#/definitions/
|
|
4061
|
+
"$ref": "#/definitions/Paths",
|
|
3997
4062
|
"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`.",
|
|
3998
4063
|
"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`."
|
|
3999
4064
|
},
|
|
@@ -4303,9 +4368,9 @@
|
|
|
4303
4368
|
"markdownDescription": "Contains settings for various Markdown engines."
|
|
4304
4369
|
},
|
|
4305
4370
|
"paths": {
|
|
4306
|
-
"$ref": "#/definitions/
|
|
4307
|
-
"description": "
|
|
4308
|
-
"markdownDescription": "
|
|
4371
|
+
"$ref": "#/definitions/BuildCoupledPaths",
|
|
4372
|
+
"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`.",
|
|
4373
|
+
"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`."
|
|
4309
4374
|
},
|
|
4310
4375
|
"source": {
|
|
4311
4376
|
"description": "Base path to your site source files, relative to the root folder.",
|
|
@@ -4330,7 +4395,7 @@
|
|
|
4330
4395
|
"additionalProperties": false,
|
|
4331
4396
|
"properties": {
|
|
4332
4397
|
"paths": {
|
|
4333
|
-
"$ref": "#/definitions/
|
|
4398
|
+
"$ref": "#/definitions/Paths",
|
|
4334
4399
|
"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`.",
|
|
4335
4400
|
"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`."
|
|
4336
4401
|
}
|
|
@@ -4340,35 +4405,347 @@
|
|
|
4340
4405
|
"MarkdownAttributeElementOptions": {
|
|
4341
4406
|
"additionalProperties": false,
|
|
4342
4407
|
"properties": {
|
|
4408
|
+
"a": {
|
|
4409
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4410
|
+
},
|
|
4411
|
+
"abbr": {
|
|
4412
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4413
|
+
},
|
|
4414
|
+
"address": {
|
|
4415
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4416
|
+
},
|
|
4417
|
+
"area": {
|
|
4418
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4419
|
+
},
|
|
4420
|
+
"article": {
|
|
4421
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4422
|
+
},
|
|
4423
|
+
"aside": {
|
|
4424
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4425
|
+
},
|
|
4426
|
+
"audio": {
|
|
4427
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4428
|
+
},
|
|
4429
|
+
"b": {
|
|
4430
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4431
|
+
},
|
|
4432
|
+
"base": {
|
|
4433
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4434
|
+
},
|
|
4435
|
+
"bdi": {
|
|
4436
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4437
|
+
},
|
|
4438
|
+
"bdo": {
|
|
4439
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4440
|
+
},
|
|
4343
4441
|
"block": {
|
|
4344
4442
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4345
4443
|
},
|
|
4346
4444
|
"blockquote": {
|
|
4347
4445
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4348
4446
|
},
|
|
4447
|
+
"body": {
|
|
4448
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4449
|
+
},
|
|
4450
|
+
"br": {
|
|
4451
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4452
|
+
},
|
|
4453
|
+
"button": {
|
|
4454
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4455
|
+
},
|
|
4456
|
+
"canvas": {
|
|
4457
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4458
|
+
},
|
|
4459
|
+
"caption": {
|
|
4460
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4461
|
+
},
|
|
4462
|
+
"cite": {
|
|
4463
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4464
|
+
},
|
|
4465
|
+
"code": {
|
|
4466
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4467
|
+
},
|
|
4468
|
+
"col": {
|
|
4469
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4470
|
+
},
|
|
4471
|
+
"colgroup": {
|
|
4472
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4473
|
+
},
|
|
4474
|
+
"data": {
|
|
4475
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4476
|
+
},
|
|
4477
|
+
"datalist": {
|
|
4478
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4479
|
+
},
|
|
4480
|
+
"dd": {
|
|
4481
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4482
|
+
},
|
|
4483
|
+
"del": {
|
|
4484
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4485
|
+
},
|
|
4486
|
+
"details": {
|
|
4487
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4488
|
+
},
|
|
4489
|
+
"dfn": {
|
|
4490
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4491
|
+
},
|
|
4492
|
+
"dialog": {
|
|
4493
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4494
|
+
},
|
|
4495
|
+
"div": {
|
|
4496
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4497
|
+
},
|
|
4498
|
+
"dl": {
|
|
4499
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4500
|
+
},
|
|
4501
|
+
"dt": {
|
|
4502
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4503
|
+
},
|
|
4504
|
+
"em": {
|
|
4505
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4506
|
+
},
|
|
4507
|
+
"embed": {
|
|
4508
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4509
|
+
},
|
|
4510
|
+
"fieldset": {
|
|
4511
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4512
|
+
},
|
|
4513
|
+
"figcaption": {
|
|
4514
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4515
|
+
},
|
|
4516
|
+
"figure": {
|
|
4517
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4518
|
+
},
|
|
4519
|
+
"footer": {
|
|
4520
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4521
|
+
},
|
|
4522
|
+
"form": {
|
|
4523
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4524
|
+
},
|
|
4525
|
+
"h1": {
|
|
4526
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4527
|
+
},
|
|
4528
|
+
"h2": {
|
|
4529
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4530
|
+
},
|
|
4531
|
+
"h3": {
|
|
4532
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4533
|
+
},
|
|
4534
|
+
"h4": {
|
|
4535
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4536
|
+
},
|
|
4537
|
+
"h5": {
|
|
4538
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4539
|
+
},
|
|
4540
|
+
"h6": {
|
|
4541
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4542
|
+
},
|
|
4543
|
+
"head": {
|
|
4544
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4545
|
+
},
|
|
4546
|
+
"header": {
|
|
4547
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4548
|
+
},
|
|
4549
|
+
"hgroup": {
|
|
4550
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4551
|
+
},
|
|
4552
|
+
"hr": {
|
|
4553
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4554
|
+
},
|
|
4555
|
+
"html": {
|
|
4556
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4557
|
+
},
|
|
4558
|
+
"i": {
|
|
4559
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4560
|
+
},
|
|
4561
|
+
"iframe": {
|
|
4562
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4563
|
+
},
|
|
4349
4564
|
"img": {
|
|
4350
4565
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4351
4566
|
},
|
|
4352
4567
|
"inline": {
|
|
4353
4568
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4354
4569
|
},
|
|
4570
|
+
"input": {
|
|
4571
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4572
|
+
},
|
|
4573
|
+
"ins": {
|
|
4574
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4575
|
+
},
|
|
4576
|
+
"kbd": {
|
|
4577
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4578
|
+
},
|
|
4579
|
+
"label": {
|
|
4580
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4581
|
+
},
|
|
4582
|
+
"legend": {
|
|
4583
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4584
|
+
},
|
|
4355
4585
|
"li": {
|
|
4356
4586
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4357
4587
|
},
|
|
4588
|
+
"link": {
|
|
4589
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4590
|
+
},
|
|
4591
|
+
"main": {
|
|
4592
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4593
|
+
},
|
|
4594
|
+
"map": {
|
|
4595
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4596
|
+
},
|
|
4597
|
+
"mark": {
|
|
4598
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4599
|
+
},
|
|
4600
|
+
"menu": {
|
|
4601
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4602
|
+
},
|
|
4603
|
+
"meta": {
|
|
4604
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4605
|
+
},
|
|
4606
|
+
"meter": {
|
|
4607
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4608
|
+
},
|
|
4609
|
+
"nav": {
|
|
4610
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4611
|
+
},
|
|
4612
|
+
"noscript": {
|
|
4613
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4614
|
+
},
|
|
4615
|
+
"object": {
|
|
4616
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4617
|
+
},
|
|
4358
4618
|
"ol": {
|
|
4359
4619
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4360
4620
|
},
|
|
4621
|
+
"optgroup": {
|
|
4622
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4623
|
+
},
|
|
4624
|
+
"option": {
|
|
4625
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4626
|
+
},
|
|
4627
|
+
"output": {
|
|
4628
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4629
|
+
},
|
|
4630
|
+
"p": {
|
|
4631
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4632
|
+
},
|
|
4633
|
+
"picture": {
|
|
4634
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4635
|
+
},
|
|
4636
|
+
"pre": {
|
|
4637
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4638
|
+
},
|
|
4639
|
+
"progress": {
|
|
4640
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4641
|
+
},
|
|
4642
|
+
"q": {
|
|
4643
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4644
|
+
},
|
|
4645
|
+
"rp": {
|
|
4646
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4647
|
+
},
|
|
4648
|
+
"rt": {
|
|
4649
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4650
|
+
},
|
|
4651
|
+
"ruby": {
|
|
4652
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4653
|
+
},
|
|
4654
|
+
"s": {
|
|
4655
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4656
|
+
},
|
|
4657
|
+
"samp": {
|
|
4658
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4659
|
+
},
|
|
4660
|
+
"script": {
|
|
4661
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4662
|
+
},
|
|
4663
|
+
"search": {
|
|
4664
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4665
|
+
},
|
|
4666
|
+
"section": {
|
|
4667
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4668
|
+
},
|
|
4669
|
+
"select": {
|
|
4670
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4671
|
+
},
|
|
4672
|
+
"slot": {
|
|
4673
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4674
|
+
},
|
|
4675
|
+
"small": {
|
|
4676
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4677
|
+
},
|
|
4678
|
+
"source": {
|
|
4679
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4680
|
+
},
|
|
4681
|
+
"span": {
|
|
4682
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4683
|
+
},
|
|
4684
|
+
"strong": {
|
|
4685
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4686
|
+
},
|
|
4687
|
+
"style": {
|
|
4688
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4689
|
+
},
|
|
4690
|
+
"sub": {
|
|
4691
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4692
|
+
},
|
|
4693
|
+
"summary": {
|
|
4694
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4695
|
+
},
|
|
4696
|
+
"sup": {
|
|
4697
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4698
|
+
},
|
|
4361
4699
|
"table": {
|
|
4362
4700
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4363
4701
|
},
|
|
4702
|
+
"tbody": {
|
|
4703
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4704
|
+
},
|
|
4364
4705
|
"td": {
|
|
4365
4706
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4366
4707
|
},
|
|
4708
|
+
"template": {
|
|
4709
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4710
|
+
},
|
|
4711
|
+
"textarea": {
|
|
4712
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4713
|
+
},
|
|
4714
|
+
"tfoot": {
|
|
4715
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4716
|
+
},
|
|
4717
|
+
"th": {
|
|
4718
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4719
|
+
},
|
|
4720
|
+
"thead": {
|
|
4721
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4722
|
+
},
|
|
4723
|
+
"time": {
|
|
4724
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4725
|
+
},
|
|
4726
|
+
"title": {
|
|
4727
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4728
|
+
},
|
|
4367
4729
|
"tr": {
|
|
4368
4730
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4369
4731
|
},
|
|
4732
|
+
"track": {
|
|
4733
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4734
|
+
},
|
|
4735
|
+
"u": {
|
|
4736
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4737
|
+
},
|
|
4370
4738
|
"ul": {
|
|
4371
4739
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4740
|
+
},
|
|
4741
|
+
"var": {
|
|
4742
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4743
|
+
},
|
|
4744
|
+
"video": {
|
|
4745
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4746
|
+
},
|
|
4747
|
+
"wbr": {
|
|
4748
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4372
4749
|
}
|
|
4373
4750
|
},
|
|
4374
4751
|
"type": "object"
|
|
@@ -4437,7 +4814,7 @@
|
|
|
4437
4814
|
},
|
|
4438
4815
|
"quotes": {
|
|
4439
4816
|
"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).",
|
|
4440
|
-
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For
|
|
4817
|
+
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For\nexample, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0',\n'\\xA0›'] for French (including nbsp).",
|
|
4441
4818
|
"type": "string"
|
|
4442
4819
|
},
|
|
4443
4820
|
"sentence_per_line": {
|
|
@@ -5495,11 +5872,6 @@
|
|
|
5495
5872
|
"Paths": {
|
|
5496
5873
|
"additionalProperties": false,
|
|
5497
5874
|
"properties": {
|
|
5498
|
-
"collections": {
|
|
5499
|
-
"description": "Parent folder of all collections.",
|
|
5500
|
-
"markdownDescription": "Parent folder of all collections.",
|
|
5501
|
-
"type": "string"
|
|
5502
|
-
},
|
|
5503
5875
|
"dam_static": {
|
|
5504
5876
|
"default": "",
|
|
5505
5877
|
"description": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
@@ -5517,21 +5889,6 @@
|
|
|
5517
5889
|
"markdownDescription": "Filename template for newly uploaded DAM files.",
|
|
5518
5890
|
"type": "string"
|
|
5519
5891
|
},
|
|
5520
|
-
"data": {
|
|
5521
|
-
"description": "Parent folder of all site data files.",
|
|
5522
|
-
"markdownDescription": "Parent folder of all site data files.",
|
|
5523
|
-
"type": "string"
|
|
5524
|
-
},
|
|
5525
|
-
"includes": {
|
|
5526
|
-
"description": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
5527
|
-
"markdownDescription": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and\nEleventy sites_.",
|
|
5528
|
-
"type": "string"
|
|
5529
|
-
},
|
|
5530
|
-
"layouts": {
|
|
5531
|
-
"description": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
5532
|
-
"markdownDescription": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
5533
|
-
"type": "string"
|
|
5534
|
-
},
|
|
5535
5892
|
"static": {
|
|
5536
5893
|
"description": "Location of assets that are statically copied to the output site. This prefix will be removed from the _Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5537
5894
|
"markdownDescription": "Location of assets that are statically copied to the output site. This prefix will be removed\nfrom the _Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
@@ -5815,50 +6172,6 @@
|
|
|
5815
6172
|
],
|
|
5816
6173
|
"type": "object"
|
|
5817
6174
|
},
|
|
5818
|
-
"ReducedPaths": {
|
|
5819
|
-
"additionalProperties": false,
|
|
5820
|
-
"properties": {
|
|
5821
|
-
"dam_static": {
|
|
5822
|
-
"default": "",
|
|
5823
|
-
"description": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5824
|
-
"markdownDescription": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM\nUploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5825
|
-
"type": "string"
|
|
5826
|
-
},
|
|
5827
|
-
"dam_uploads": {
|
|
5828
|
-
"default": "",
|
|
5829
|
-
"description": "Default location of newly uploaded DAM files.",
|
|
5830
|
-
"markdownDescription": "Default location of newly uploaded DAM files.",
|
|
5831
|
-
"type": "string"
|
|
5832
|
-
},
|
|
5833
|
-
"dam_uploads_filename": {
|
|
5834
|
-
"description": "Filename template for newly uploaded DAM files.",
|
|
5835
|
-
"markdownDescription": "Filename template for newly uploaded DAM files.",
|
|
5836
|
-
"type": "string"
|
|
5837
|
-
},
|
|
5838
|
-
"static": {
|
|
5839
|
-
"description": "Location of assets that are statically copied to the output site. This prefix will be removed from the _Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5840
|
-
"markdownDescription": "Location of assets that are statically copied to the output site. This prefix will be removed\nfrom the _Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5841
|
-
"type": "string"
|
|
5842
|
-
},
|
|
5843
|
-
"uploads": {
|
|
5844
|
-
"default": "uploads",
|
|
5845
|
-
"description": "Default location of newly uploaded site files.",
|
|
5846
|
-
"markdownDescription": "Default location of newly uploaded site files.",
|
|
5847
|
-
"type": "string"
|
|
5848
|
-
},
|
|
5849
|
-
"uploads_filename": {
|
|
5850
|
-
"description": "Filename template for newly uploaded site files.",
|
|
5851
|
-
"markdownDescription": "Filename template for newly uploaded site files.",
|
|
5852
|
-
"type": "string"
|
|
5853
|
-
},
|
|
5854
|
-
"uploads_use_relative_path": {
|
|
5855
|
-
"description": "When set to true, CloudCannon will reference files relative to the path of the file they were uploaded to.",
|
|
5856
|
-
"markdownDescription": "When set to true, CloudCannon will reference files relative to the path of the file they were\nuploaded to.",
|
|
5857
|
-
"type": "boolean"
|
|
5858
|
-
}
|
|
5859
|
-
},
|
|
5860
|
-
"type": "object"
|
|
5861
|
-
},
|
|
5862
6175
|
"RichTextInput": {
|
|
5863
6176
|
"additionalProperties": false,
|
|
5864
6177
|
"properties": {
|
|
@@ -6097,7 +6410,7 @@
|
|
|
6097
6410
|
"type": "boolean"
|
|
6098
6411
|
},
|
|
6099
6412
|
"paths": {
|
|
6100
|
-
"$ref": "#/definitions/
|
|
6413
|
+
"$ref": "#/definitions/Paths",
|
|
6101
6414
|
"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`.",
|
|
6102
6415
|
"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`."
|
|
6103
6416
|
},
|
|
@@ -7439,7 +7752,7 @@
|
|
|
7439
7752
|
"type": "boolean"
|
|
7440
7753
|
},
|
|
7441
7754
|
"paths": {
|
|
7442
|
-
"$ref": "#/definitions/
|
|
7755
|
+
"$ref": "#/definitions/Paths",
|
|
7443
7756
|
"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`.",
|
|
7444
7757
|
"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`."
|
|
7445
7758
|
},
|
|
@@ -8402,7 +8715,7 @@
|
|
|
8402
8715
|
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
8403
8716
|
},
|
|
8404
8717
|
"paths": {
|
|
8405
|
-
"$ref": "#/definitions/
|
|
8718
|
+
"$ref": "#/definitions/Paths",
|
|
8406
8719
|
"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`.",
|
|
8407
8720
|
"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`."
|
|
8408
8721
|
}
|