@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
|
},
|
|
@@ -515,6 +516,70 @@
|
|
|
515
516
|
},
|
|
516
517
|
"type": "object"
|
|
517
518
|
},
|
|
519
|
+
"BuildCoupledPaths": {
|
|
520
|
+
"additionalProperties": false,
|
|
521
|
+
"properties": {
|
|
522
|
+
"collections": {
|
|
523
|
+
"description": "Parent folder of all collections.",
|
|
524
|
+
"markdownDescription": "Parent folder of all collections.",
|
|
525
|
+
"type": "string"
|
|
526
|
+
},
|
|
527
|
+
"dam_static": {
|
|
528
|
+
"default": "",
|
|
529
|
+
"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.",
|
|
530
|
+
"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.",
|
|
531
|
+
"type": "string"
|
|
532
|
+
},
|
|
533
|
+
"dam_uploads": {
|
|
534
|
+
"default": "",
|
|
535
|
+
"description": "Default location of newly uploaded DAM files.",
|
|
536
|
+
"markdownDescription": "Default location of newly uploaded DAM files.",
|
|
537
|
+
"type": "string"
|
|
538
|
+
},
|
|
539
|
+
"dam_uploads_filename": {
|
|
540
|
+
"description": "Filename template for newly uploaded DAM files.",
|
|
541
|
+
"markdownDescription": "Filename template for newly uploaded DAM files.",
|
|
542
|
+
"type": "string"
|
|
543
|
+
},
|
|
544
|
+
"data": {
|
|
545
|
+
"description": "Parent folder of all site data files.",
|
|
546
|
+
"markdownDescription": "Parent folder of all site data files.",
|
|
547
|
+
"type": "string"
|
|
548
|
+
},
|
|
549
|
+
"includes": {
|
|
550
|
+
"description": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
551
|
+
"markdownDescription": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and\nEleventy sites_.",
|
|
552
|
+
"type": "string"
|
|
553
|
+
},
|
|
554
|
+
"layouts": {
|
|
555
|
+
"description": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
556
|
+
"markdownDescription": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
557
|
+
"type": "string"
|
|
558
|
+
},
|
|
559
|
+
"static": {
|
|
560
|
+
"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.",
|
|
561
|
+
"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.",
|
|
562
|
+
"type": "string"
|
|
563
|
+
},
|
|
564
|
+
"uploads": {
|
|
565
|
+
"default": "uploads",
|
|
566
|
+
"description": "Default location of newly uploaded site files.",
|
|
567
|
+
"markdownDescription": "Default location of newly uploaded site files.",
|
|
568
|
+
"type": "string"
|
|
569
|
+
},
|
|
570
|
+
"uploads_filename": {
|
|
571
|
+
"description": "Filename template for newly uploaded site files.",
|
|
572
|
+
"markdownDescription": "Filename template for newly uploaded site files.",
|
|
573
|
+
"type": "string"
|
|
574
|
+
},
|
|
575
|
+
"uploads_use_relative_path": {
|
|
576
|
+
"description": "When set to true, CloudCannon will reference files relative to the path of the file they were uploaded to.",
|
|
577
|
+
"markdownDescription": "When set to true, CloudCannon will reference files relative to the path of the file they were\nuploaded to.",
|
|
578
|
+
"type": "boolean"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"type": "object"
|
|
582
|
+
},
|
|
518
583
|
"ChoiceInput": {
|
|
519
584
|
"additionalProperties": false,
|
|
520
585
|
"properties": {
|
|
@@ -974,33 +1039,6 @@
|
|
|
974
1039
|
],
|
|
975
1040
|
"type": "object"
|
|
976
1041
|
},
|
|
977
|
-
"DataConfigEntry": {
|
|
978
|
-
"additionalProperties": false,
|
|
979
|
-
"properties": {
|
|
980
|
-
"parser": {
|
|
981
|
-
"description": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
982
|
-
"enum": [
|
|
983
|
-
"csv",
|
|
984
|
-
"front-matter",
|
|
985
|
-
"json",
|
|
986
|
-
"properties",
|
|
987
|
-
"toml",
|
|
988
|
-
"yaml"
|
|
989
|
-
],
|
|
990
|
-
"markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
991
|
-
"type": "string"
|
|
992
|
-
},
|
|
993
|
-
"path": {
|
|
994
|
-
"description": "The path to a file or folder of files containing data.",
|
|
995
|
-
"markdownDescription": "The path to a file or folder of files containing data.",
|
|
996
|
-
"type": "string"
|
|
997
|
-
}
|
|
998
|
-
},
|
|
999
|
-
"required": [
|
|
1000
|
-
"path"
|
|
1001
|
-
],
|
|
1002
|
-
"type": "object"
|
|
1003
|
-
},
|
|
1004
1042
|
"DateInput": {
|
|
1005
1043
|
"additionalProperties": false,
|
|
1006
1044
|
"properties": {
|
|
@@ -1411,7 +1449,7 @@
|
|
|
1411
1449
|
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
1412
1450
|
},
|
|
1413
1451
|
"paths": {
|
|
1414
|
-
"$ref": "#/definitions/
|
|
1452
|
+
"$ref": "#/definitions/Paths",
|
|
1415
1453
|
"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`.",
|
|
1416
1454
|
"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`."
|
|
1417
1455
|
}
|
|
@@ -3620,7 +3658,7 @@
|
|
|
3620
3658
|
"type": "string"
|
|
3621
3659
|
},
|
|
3622
3660
|
"paths": {
|
|
3623
|
-
"$ref": "#/definitions/
|
|
3661
|
+
"$ref": "#/definitions/Paths",
|
|
3624
3662
|
"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`.",
|
|
3625
3663
|
"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`."
|
|
3626
3664
|
},
|
|
@@ -3815,7 +3853,7 @@
|
|
|
3815
3853
|
"type": "string"
|
|
3816
3854
|
},
|
|
3817
3855
|
"paths": {
|
|
3818
|
-
"$ref": "#/definitions/
|
|
3856
|
+
"$ref": "#/definitions/Paths",
|
|
3819
3857
|
"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`.",
|
|
3820
3858
|
"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`."
|
|
3821
3859
|
},
|
|
@@ -3973,7 +4011,7 @@
|
|
|
3973
4011
|
"additionalProperties": false,
|
|
3974
4012
|
"properties": {
|
|
3975
4013
|
"paths": {
|
|
3976
|
-
"$ref": "#/definitions/
|
|
4014
|
+
"$ref": "#/definitions/Paths",
|
|
3977
4015
|
"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`.",
|
|
3978
4016
|
"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`."
|
|
3979
4017
|
}
|
|
@@ -3983,35 +4021,347 @@
|
|
|
3983
4021
|
"MarkdownAttributeElementOptions": {
|
|
3984
4022
|
"additionalProperties": false,
|
|
3985
4023
|
"properties": {
|
|
4024
|
+
"a": {
|
|
4025
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4026
|
+
},
|
|
4027
|
+
"abbr": {
|
|
4028
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4029
|
+
},
|
|
4030
|
+
"address": {
|
|
4031
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4032
|
+
},
|
|
4033
|
+
"area": {
|
|
4034
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4035
|
+
},
|
|
4036
|
+
"article": {
|
|
4037
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4038
|
+
},
|
|
4039
|
+
"aside": {
|
|
4040
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4041
|
+
},
|
|
4042
|
+
"audio": {
|
|
4043
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4044
|
+
},
|
|
4045
|
+
"b": {
|
|
4046
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4047
|
+
},
|
|
4048
|
+
"base": {
|
|
4049
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4050
|
+
},
|
|
4051
|
+
"bdi": {
|
|
4052
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4053
|
+
},
|
|
4054
|
+
"bdo": {
|
|
4055
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4056
|
+
},
|
|
3986
4057
|
"block": {
|
|
3987
4058
|
"$ref": "#/definitions/AttributeListPosition"
|
|
3988
4059
|
},
|
|
3989
4060
|
"blockquote": {
|
|
3990
4061
|
"$ref": "#/definitions/AttributeListPosition"
|
|
3991
4062
|
},
|
|
4063
|
+
"body": {
|
|
4064
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4065
|
+
},
|
|
4066
|
+
"br": {
|
|
4067
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4068
|
+
},
|
|
4069
|
+
"button": {
|
|
4070
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4071
|
+
},
|
|
4072
|
+
"canvas": {
|
|
4073
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4074
|
+
},
|
|
4075
|
+
"caption": {
|
|
4076
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4077
|
+
},
|
|
4078
|
+
"cite": {
|
|
4079
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4080
|
+
},
|
|
4081
|
+
"code": {
|
|
4082
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4083
|
+
},
|
|
4084
|
+
"col": {
|
|
4085
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4086
|
+
},
|
|
4087
|
+
"colgroup": {
|
|
4088
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4089
|
+
},
|
|
4090
|
+
"data": {
|
|
4091
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4092
|
+
},
|
|
4093
|
+
"datalist": {
|
|
4094
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4095
|
+
},
|
|
4096
|
+
"dd": {
|
|
4097
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4098
|
+
},
|
|
4099
|
+
"del": {
|
|
4100
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4101
|
+
},
|
|
4102
|
+
"details": {
|
|
4103
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4104
|
+
},
|
|
4105
|
+
"dfn": {
|
|
4106
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4107
|
+
},
|
|
4108
|
+
"dialog": {
|
|
4109
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4110
|
+
},
|
|
4111
|
+
"div": {
|
|
4112
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4113
|
+
},
|
|
4114
|
+
"dl": {
|
|
4115
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4116
|
+
},
|
|
4117
|
+
"dt": {
|
|
4118
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4119
|
+
},
|
|
4120
|
+
"em": {
|
|
4121
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4122
|
+
},
|
|
4123
|
+
"embed": {
|
|
4124
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4125
|
+
},
|
|
4126
|
+
"fieldset": {
|
|
4127
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4128
|
+
},
|
|
4129
|
+
"figcaption": {
|
|
4130
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4131
|
+
},
|
|
4132
|
+
"figure": {
|
|
4133
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4134
|
+
},
|
|
4135
|
+
"footer": {
|
|
4136
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4137
|
+
},
|
|
4138
|
+
"form": {
|
|
4139
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4140
|
+
},
|
|
4141
|
+
"h1": {
|
|
4142
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4143
|
+
},
|
|
4144
|
+
"h2": {
|
|
4145
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4146
|
+
},
|
|
4147
|
+
"h3": {
|
|
4148
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4149
|
+
},
|
|
4150
|
+
"h4": {
|
|
4151
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4152
|
+
},
|
|
4153
|
+
"h5": {
|
|
4154
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4155
|
+
},
|
|
4156
|
+
"h6": {
|
|
4157
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4158
|
+
},
|
|
4159
|
+
"head": {
|
|
4160
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4161
|
+
},
|
|
4162
|
+
"header": {
|
|
4163
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4164
|
+
},
|
|
4165
|
+
"hgroup": {
|
|
4166
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4167
|
+
},
|
|
4168
|
+
"hr": {
|
|
4169
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4170
|
+
},
|
|
4171
|
+
"html": {
|
|
4172
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4173
|
+
},
|
|
4174
|
+
"i": {
|
|
4175
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4176
|
+
},
|
|
4177
|
+
"iframe": {
|
|
4178
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4179
|
+
},
|
|
3992
4180
|
"img": {
|
|
3993
4181
|
"$ref": "#/definitions/AttributeListPosition"
|
|
3994
4182
|
},
|
|
3995
4183
|
"inline": {
|
|
3996
4184
|
"$ref": "#/definitions/AttributeListPosition"
|
|
3997
4185
|
},
|
|
4186
|
+
"input": {
|
|
4187
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4188
|
+
},
|
|
4189
|
+
"ins": {
|
|
4190
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4191
|
+
},
|
|
4192
|
+
"kbd": {
|
|
4193
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4194
|
+
},
|
|
4195
|
+
"label": {
|
|
4196
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4197
|
+
},
|
|
4198
|
+
"legend": {
|
|
4199
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4200
|
+
},
|
|
3998
4201
|
"li": {
|
|
3999
4202
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4000
4203
|
},
|
|
4204
|
+
"link": {
|
|
4205
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4206
|
+
},
|
|
4207
|
+
"main": {
|
|
4208
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4209
|
+
},
|
|
4210
|
+
"map": {
|
|
4211
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4212
|
+
},
|
|
4213
|
+
"mark": {
|
|
4214
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4215
|
+
},
|
|
4216
|
+
"menu": {
|
|
4217
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4218
|
+
},
|
|
4219
|
+
"meta": {
|
|
4220
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4221
|
+
},
|
|
4222
|
+
"meter": {
|
|
4223
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4224
|
+
},
|
|
4225
|
+
"nav": {
|
|
4226
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4227
|
+
},
|
|
4228
|
+
"noscript": {
|
|
4229
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4230
|
+
},
|
|
4231
|
+
"object": {
|
|
4232
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4233
|
+
},
|
|
4001
4234
|
"ol": {
|
|
4002
4235
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4003
4236
|
},
|
|
4237
|
+
"optgroup": {
|
|
4238
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4239
|
+
},
|
|
4240
|
+
"option": {
|
|
4241
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4242
|
+
},
|
|
4243
|
+
"output": {
|
|
4244
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4245
|
+
},
|
|
4246
|
+
"p": {
|
|
4247
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4248
|
+
},
|
|
4249
|
+
"picture": {
|
|
4250
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4251
|
+
},
|
|
4252
|
+
"pre": {
|
|
4253
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4254
|
+
},
|
|
4255
|
+
"progress": {
|
|
4256
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4257
|
+
},
|
|
4258
|
+
"q": {
|
|
4259
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4260
|
+
},
|
|
4261
|
+
"rp": {
|
|
4262
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4263
|
+
},
|
|
4264
|
+
"rt": {
|
|
4265
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4266
|
+
},
|
|
4267
|
+
"ruby": {
|
|
4268
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4269
|
+
},
|
|
4270
|
+
"s": {
|
|
4271
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4272
|
+
},
|
|
4273
|
+
"samp": {
|
|
4274
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4275
|
+
},
|
|
4276
|
+
"script": {
|
|
4277
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4278
|
+
},
|
|
4279
|
+
"search": {
|
|
4280
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4281
|
+
},
|
|
4282
|
+
"section": {
|
|
4283
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4284
|
+
},
|
|
4285
|
+
"select": {
|
|
4286
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4287
|
+
},
|
|
4288
|
+
"slot": {
|
|
4289
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4290
|
+
},
|
|
4291
|
+
"small": {
|
|
4292
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4293
|
+
},
|
|
4294
|
+
"source": {
|
|
4295
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4296
|
+
},
|
|
4297
|
+
"span": {
|
|
4298
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4299
|
+
},
|
|
4300
|
+
"strong": {
|
|
4301
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4302
|
+
},
|
|
4303
|
+
"style": {
|
|
4304
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4305
|
+
},
|
|
4306
|
+
"sub": {
|
|
4307
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4308
|
+
},
|
|
4309
|
+
"summary": {
|
|
4310
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4311
|
+
},
|
|
4312
|
+
"sup": {
|
|
4313
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4314
|
+
},
|
|
4004
4315
|
"table": {
|
|
4005
4316
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4006
4317
|
},
|
|
4318
|
+
"tbody": {
|
|
4319
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4320
|
+
},
|
|
4007
4321
|
"td": {
|
|
4008
4322
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4009
4323
|
},
|
|
4324
|
+
"template": {
|
|
4325
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4326
|
+
},
|
|
4327
|
+
"textarea": {
|
|
4328
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4329
|
+
},
|
|
4330
|
+
"tfoot": {
|
|
4331
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4332
|
+
},
|
|
4333
|
+
"th": {
|
|
4334
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4335
|
+
},
|
|
4336
|
+
"thead": {
|
|
4337
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4338
|
+
},
|
|
4339
|
+
"time": {
|
|
4340
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4341
|
+
},
|
|
4342
|
+
"title": {
|
|
4343
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4344
|
+
},
|
|
4010
4345
|
"tr": {
|
|
4011
4346
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4012
4347
|
},
|
|
4348
|
+
"track": {
|
|
4349
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4350
|
+
},
|
|
4351
|
+
"u": {
|
|
4352
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4353
|
+
},
|
|
4013
4354
|
"ul": {
|
|
4014
4355
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4356
|
+
},
|
|
4357
|
+
"var": {
|
|
4358
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4359
|
+
},
|
|
4360
|
+
"video": {
|
|
4361
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4362
|
+
},
|
|
4363
|
+
"wbr": {
|
|
4364
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4015
4365
|
}
|
|
4016
4366
|
},
|
|
4017
4367
|
"type": "object"
|
|
@@ -4080,7 +4430,7 @@
|
|
|
4080
4430
|
},
|
|
4081
4431
|
"quotes": {
|
|
4082
4432
|
"description": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
|
|
4083
|
-
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For
|
|
4433
|
+
"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).",
|
|
4084
4434
|
"type": "string"
|
|
4085
4435
|
},
|
|
4086
4436
|
"sentence_per_line": {
|
|
@@ -5138,11 +5488,6 @@
|
|
|
5138
5488
|
"Paths": {
|
|
5139
5489
|
"additionalProperties": false,
|
|
5140
5490
|
"properties": {
|
|
5141
|
-
"collections": {
|
|
5142
|
-
"description": "Parent folder of all collections.",
|
|
5143
|
-
"markdownDescription": "Parent folder of all collections.",
|
|
5144
|
-
"type": "string"
|
|
5145
|
-
},
|
|
5146
5491
|
"dam_static": {
|
|
5147
5492
|
"default": "",
|
|
5148
5493
|
"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.",
|
|
@@ -5160,21 +5505,6 @@
|
|
|
5160
5505
|
"markdownDescription": "Filename template for newly uploaded DAM files.",
|
|
5161
5506
|
"type": "string"
|
|
5162
5507
|
},
|
|
5163
|
-
"data": {
|
|
5164
|
-
"description": "Parent folder of all site data files.",
|
|
5165
|
-
"markdownDescription": "Parent folder of all site data files.",
|
|
5166
|
-
"type": "string"
|
|
5167
|
-
},
|
|
5168
|
-
"includes": {
|
|
5169
|
-
"description": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
5170
|
-
"markdownDescription": "Parent folder of all includes, partials, or shortcode files. _Only applies to Jekyll, Hugo, and\nEleventy sites_.",
|
|
5171
|
-
"type": "string"
|
|
5172
|
-
},
|
|
5173
|
-
"layouts": {
|
|
5174
|
-
"description": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
5175
|
-
"markdownDescription": "Parent folder of all site layout files. _Only applies to Jekyll, Hugo, and Eleventy sites_.",
|
|
5176
|
-
"type": "string"
|
|
5177
|
-
},
|
|
5178
5508
|
"static": {
|
|
5179
5509
|
"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.",
|
|
5180
5510
|
"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.",
|
|
@@ -5806,7 +6136,31 @@
|
|
|
5806
6136
|
},
|
|
5807
6137
|
"data_config": {
|
|
5808
6138
|
"additionalProperties": {
|
|
5809
|
-
"
|
|
6139
|
+
"additionalProperties": false,
|
|
6140
|
+
"properties": {
|
|
6141
|
+
"parser": {
|
|
6142
|
+
"description": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
6143
|
+
"enum": [
|
|
6144
|
+
"csv",
|
|
6145
|
+
"front-matter",
|
|
6146
|
+
"json",
|
|
6147
|
+
"properties",
|
|
6148
|
+
"toml",
|
|
6149
|
+
"yaml"
|
|
6150
|
+
],
|
|
6151
|
+
"markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
|
|
6152
|
+
"type": "string"
|
|
6153
|
+
},
|
|
6154
|
+
"path": {
|
|
6155
|
+
"description": "The path to a file or folder of files containing data.",
|
|
6156
|
+
"markdownDescription": "The path to a file or folder of files containing data.",
|
|
6157
|
+
"type": "string"
|
|
6158
|
+
}
|
|
6159
|
+
},
|
|
6160
|
+
"required": [
|
|
6161
|
+
"path"
|
|
6162
|
+
],
|
|
6163
|
+
"type": "object"
|
|
5810
6164
|
},
|
|
5811
6165
|
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
5812
6166
|
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
@@ -5836,9 +6190,9 @@
|
|
|
5836
6190
|
"type": "string"
|
|
5837
6191
|
},
|
|
5838
6192
|
"paths": {
|
|
5839
|
-
"$ref": "#/definitions/
|
|
5840
|
-
"description": "
|
|
5841
|
-
"markdownDescription": "
|
|
6193
|
+
"$ref": "#/definitions/BuildCoupledPaths",
|
|
6194
|
+
"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`.",
|
|
6195
|
+
"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`."
|
|
5842
6196
|
},
|
|
5843
6197
|
"source": {
|
|
5844
6198
|
"description": "Base path to your site source files, relative to the root folder.",
|
|
@@ -5859,50 +6213,6 @@
|
|
|
5859
6213
|
},
|
|
5860
6214
|
"type": "object"
|
|
5861
6215
|
},
|
|
5862
|
-
"ReducedPaths": {
|
|
5863
|
-
"additionalProperties": false,
|
|
5864
|
-
"properties": {
|
|
5865
|
-
"dam_static": {
|
|
5866
|
-
"default": "",
|
|
5867
|
-
"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.",
|
|
5868
|
-
"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.",
|
|
5869
|
-
"type": "string"
|
|
5870
|
-
},
|
|
5871
|
-
"dam_uploads": {
|
|
5872
|
-
"default": "",
|
|
5873
|
-
"description": "Default location of newly uploaded DAM files.",
|
|
5874
|
-
"markdownDescription": "Default location of newly uploaded DAM files.",
|
|
5875
|
-
"type": "string"
|
|
5876
|
-
},
|
|
5877
|
-
"dam_uploads_filename": {
|
|
5878
|
-
"description": "Filename template for newly uploaded DAM files.",
|
|
5879
|
-
"markdownDescription": "Filename template for newly uploaded DAM files.",
|
|
5880
|
-
"type": "string"
|
|
5881
|
-
},
|
|
5882
|
-
"static": {
|
|
5883
|
-
"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.",
|
|
5884
|
-
"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.",
|
|
5885
|
-
"type": "string"
|
|
5886
|
-
},
|
|
5887
|
-
"uploads": {
|
|
5888
|
-
"default": "uploads",
|
|
5889
|
-
"description": "Default location of newly uploaded site files.",
|
|
5890
|
-
"markdownDescription": "Default location of newly uploaded site files.",
|
|
5891
|
-
"type": "string"
|
|
5892
|
-
},
|
|
5893
|
-
"uploads_filename": {
|
|
5894
|
-
"description": "Filename template for newly uploaded site files.",
|
|
5895
|
-
"markdownDescription": "Filename template for newly uploaded site files.",
|
|
5896
|
-
"type": "string"
|
|
5897
|
-
},
|
|
5898
|
-
"uploads_use_relative_path": {
|
|
5899
|
-
"description": "When set to true, CloudCannon will reference files relative to the path of the file they were uploaded to.",
|
|
5900
|
-
"markdownDescription": "When set to true, CloudCannon will reference files relative to the path of the file they were\nuploaded to.",
|
|
5901
|
-
"type": "boolean"
|
|
5902
|
-
}
|
|
5903
|
-
},
|
|
5904
|
-
"type": "object"
|
|
5905
|
-
},
|
|
5906
6216
|
"RichTextInput": {
|
|
5907
6217
|
"additionalProperties": false,
|
|
5908
6218
|
"properties": {
|
|
@@ -6141,7 +6451,7 @@
|
|
|
6141
6451
|
"type": "boolean"
|
|
6142
6452
|
},
|
|
6143
6453
|
"paths": {
|
|
6144
|
-
"$ref": "#/definitions/
|
|
6454
|
+
"$ref": "#/definitions/Paths",
|
|
6145
6455
|
"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`.",
|
|
6146
6456
|
"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`."
|
|
6147
6457
|
},
|
|
@@ -7483,7 +7793,7 @@
|
|
|
7483
7793
|
"type": "boolean"
|
|
7484
7794
|
},
|
|
7485
7795
|
"paths": {
|
|
7486
|
-
"$ref": "#/definitions/
|
|
7796
|
+
"$ref": "#/definitions/Paths",
|
|
7487
7797
|
"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`.",
|
|
7488
7798
|
"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`."
|
|
7489
7799
|
},
|
|
@@ -8446,7 +8756,7 @@
|
|
|
8446
8756
|
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
8447
8757
|
},
|
|
8448
8758
|
"paths": {
|
|
8449
|
-
"$ref": "#/definitions/
|
|
8759
|
+
"$ref": "#/definitions/Paths",
|
|
8450
8760
|
"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`.",
|
|
8451
8761
|
"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`."
|
|
8452
8762
|
}
|