@cloudcannon/configuration-types 0.0.8 → 0.0.10
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 +492 -82
- package/build/cloudcannon-config-hugo.json +492 -82
- package/build/cloudcannon-config-jekyll.json +492 -82
- package/build/cloudcannon-config-reader.json +492 -82
- package/build/cloudcannon-config.json +492 -82
- package/package.json +1 -1
- package/src/configuration.d.ts +90 -39
|
@@ -157,6 +157,17 @@
|
|
|
157
157
|
},
|
|
158
158
|
"type": "object"
|
|
159
159
|
},
|
|
160
|
+
"AttributeListPosition": {
|
|
161
|
+
"enum": [
|
|
162
|
+
"none",
|
|
163
|
+
"right",
|
|
164
|
+
"space right",
|
|
165
|
+
"below",
|
|
166
|
+
"newline below",
|
|
167
|
+
"right-of-prefix"
|
|
168
|
+
],
|
|
169
|
+
"type": "string"
|
|
170
|
+
},
|
|
160
171
|
"BaseInput": {
|
|
161
172
|
"additionalProperties": false,
|
|
162
173
|
"properties": {
|
|
@@ -308,12 +319,6 @@
|
|
|
308
319
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
309
320
|
"type": "boolean"
|
|
310
321
|
},
|
|
311
|
-
"correct_orientation": {
|
|
312
|
-
"default": true,
|
|
313
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
314
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
315
|
-
"type": "boolean"
|
|
316
|
-
},
|
|
317
322
|
"embed": {
|
|
318
323
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
319
324
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
@@ -380,7 +385,8 @@
|
|
|
380
385
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
381
386
|
"enum": [
|
|
382
387
|
"image/jpeg",
|
|
383
|
-
"image/png"
|
|
388
|
+
"image/png",
|
|
389
|
+
"image/webp"
|
|
384
390
|
],
|
|
385
391
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
386
392
|
"type": "string"
|
|
@@ -3760,12 +3766,6 @@
|
|
|
3760
3766
|
"markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset\nsources can be uploaded to and selected from.",
|
|
3761
3767
|
"type": "array"
|
|
3762
3768
|
},
|
|
3763
|
-
"correct_orientation": {
|
|
3764
|
-
"default": true,
|
|
3765
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
3766
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
3767
|
-
"type": "boolean"
|
|
3768
|
-
},
|
|
3769
3769
|
"expandable": {
|
|
3770
3770
|
"default": false,
|
|
3771
3771
|
"description": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized.",
|
|
@@ -3787,7 +3787,8 @@
|
|
|
3787
3787
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
3788
3788
|
"enum": [
|
|
3789
3789
|
"image/jpeg",
|
|
3790
|
-
"image/png"
|
|
3790
|
+
"image/png",
|
|
3791
|
+
"image/webp"
|
|
3791
3792
|
],
|
|
3792
3793
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
3793
3794
|
"type": "string"
|
|
@@ -3955,12 +3956,6 @@
|
|
|
3955
3956
|
"markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset\nsources can be uploaded to and selected from.",
|
|
3956
3957
|
"type": "array"
|
|
3957
3958
|
},
|
|
3958
|
-
"correct_orientation": {
|
|
3959
|
-
"default": true,
|
|
3960
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
3961
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
3962
|
-
"type": "boolean"
|
|
3963
|
-
},
|
|
3964
3959
|
"empty_type": {
|
|
3965
3960
|
"$ref": "#/definitions/EmptyTypeText",
|
|
3966
3961
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
@@ -3987,7 +3982,8 @@
|
|
|
3987
3982
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
3988
3983
|
"enum": [
|
|
3989
3984
|
"image/jpeg",
|
|
3990
|
-
"image/png"
|
|
3985
|
+
"image/png",
|
|
3986
|
+
"image/webp"
|
|
3991
3987
|
],
|
|
3992
3988
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
3993
3989
|
"type": "string"
|
|
@@ -4297,61 +4293,10 @@
|
|
|
4297
4293
|
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
4298
4294
|
"type": "object"
|
|
4299
4295
|
},
|
|
4300
|
-
"
|
|
4301
|
-
"
|
|
4296
|
+
"markdown": {
|
|
4297
|
+
"$ref": "#/definitions/MarkdownSettings",
|
|
4302
4298
|
"description": "Contains settings for various Markdown engines.",
|
|
4303
|
-
"markdownDescription": "Contains settings for various Markdown engines."
|
|
4304
|
-
"properties": {
|
|
4305
|
-
"metadata": {
|
|
4306
|
-
"additionalProperties": false,
|
|
4307
|
-
"description": "Settings for various Markdown engines.",
|
|
4308
|
-
"markdownDescription": "Settings for various Markdown engines.",
|
|
4309
|
-
"properties": {
|
|
4310
|
-
"commonmark": {
|
|
4311
|
-
"description": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
4312
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
|
|
4313
|
-
"type": "object"
|
|
4314
|
-
},
|
|
4315
|
-
"commonmarkghpages": {
|
|
4316
|
-
"description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
4317
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
|
|
4318
|
-
"type": "object"
|
|
4319
|
-
},
|
|
4320
|
-
"goldmark": {
|
|
4321
|
-
"description": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
4322
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
|
|
4323
|
-
"type": "object"
|
|
4324
|
-
},
|
|
4325
|
-
"kramdown": {
|
|
4326
|
-
"description": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
4327
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
|
|
4328
|
-
"type": "object"
|
|
4329
|
-
},
|
|
4330
|
-
"markdown": {
|
|
4331
|
-
"description": "The Markdown engine used on your site.",
|
|
4332
|
-
"enum": [
|
|
4333
|
-
"kramdown",
|
|
4334
|
-
"commonmark",
|
|
4335
|
-
"commonmarkghpages",
|
|
4336
|
-
"goldmark",
|
|
4337
|
-
"markdown-it"
|
|
4338
|
-
],
|
|
4339
|
-
"markdownDescription": "The Markdown engine used on your site.",
|
|
4340
|
-
"type": "string"
|
|
4341
|
-
},
|
|
4342
|
-
"markdown-it": {
|
|
4343
|
-
"description": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
4344
|
-
"markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
|
|
4345
|
-
"type": "object"
|
|
4346
|
-
}
|
|
4347
|
-
},
|
|
4348
|
-
"required": [
|
|
4349
|
-
"markdown"
|
|
4350
|
-
],
|
|
4351
|
-
"type": "object"
|
|
4352
|
-
}
|
|
4353
|
-
},
|
|
4354
|
-
"type": "object"
|
|
4299
|
+
"markdownDescription": "Contains settings for various Markdown engines."
|
|
4355
4300
|
},
|
|
4356
4301
|
"paths": {
|
|
4357
4302
|
"$ref": "#/definitions/Paths",
|
|
@@ -4388,6 +4333,476 @@
|
|
|
4388
4333
|
},
|
|
4389
4334
|
"type": "object"
|
|
4390
4335
|
},
|
|
4336
|
+
"MarkdownAttributeElementOptions": {
|
|
4337
|
+
"additionalProperties": false,
|
|
4338
|
+
"properties": {
|
|
4339
|
+
"a": {
|
|
4340
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4341
|
+
},
|
|
4342
|
+
"abbr": {
|
|
4343
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4344
|
+
},
|
|
4345
|
+
"address": {
|
|
4346
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4347
|
+
},
|
|
4348
|
+
"area": {
|
|
4349
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4350
|
+
},
|
|
4351
|
+
"article": {
|
|
4352
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4353
|
+
},
|
|
4354
|
+
"aside": {
|
|
4355
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4356
|
+
},
|
|
4357
|
+
"audio": {
|
|
4358
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4359
|
+
},
|
|
4360
|
+
"b": {
|
|
4361
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4362
|
+
},
|
|
4363
|
+
"base": {
|
|
4364
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4365
|
+
},
|
|
4366
|
+
"bdi": {
|
|
4367
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4368
|
+
},
|
|
4369
|
+
"bdo": {
|
|
4370
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4371
|
+
},
|
|
4372
|
+
"block": {
|
|
4373
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4374
|
+
},
|
|
4375
|
+
"blockquote": {
|
|
4376
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4377
|
+
},
|
|
4378
|
+
"body": {
|
|
4379
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4380
|
+
},
|
|
4381
|
+
"br": {
|
|
4382
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4383
|
+
},
|
|
4384
|
+
"button": {
|
|
4385
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4386
|
+
},
|
|
4387
|
+
"canvas": {
|
|
4388
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4389
|
+
},
|
|
4390
|
+
"caption": {
|
|
4391
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4392
|
+
},
|
|
4393
|
+
"cite": {
|
|
4394
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4395
|
+
},
|
|
4396
|
+
"code": {
|
|
4397
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4398
|
+
},
|
|
4399
|
+
"col": {
|
|
4400
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4401
|
+
},
|
|
4402
|
+
"colgroup": {
|
|
4403
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4404
|
+
},
|
|
4405
|
+
"data": {
|
|
4406
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4407
|
+
},
|
|
4408
|
+
"datalist": {
|
|
4409
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4410
|
+
},
|
|
4411
|
+
"dd": {
|
|
4412
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4413
|
+
},
|
|
4414
|
+
"del": {
|
|
4415
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4416
|
+
},
|
|
4417
|
+
"details": {
|
|
4418
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4419
|
+
},
|
|
4420
|
+
"dfn": {
|
|
4421
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4422
|
+
},
|
|
4423
|
+
"dialog": {
|
|
4424
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4425
|
+
},
|
|
4426
|
+
"div": {
|
|
4427
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4428
|
+
},
|
|
4429
|
+
"dl": {
|
|
4430
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4431
|
+
},
|
|
4432
|
+
"dt": {
|
|
4433
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4434
|
+
},
|
|
4435
|
+
"em": {
|
|
4436
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4437
|
+
},
|
|
4438
|
+
"embed": {
|
|
4439
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4440
|
+
},
|
|
4441
|
+
"fieldset": {
|
|
4442
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4443
|
+
},
|
|
4444
|
+
"figcaption": {
|
|
4445
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4446
|
+
},
|
|
4447
|
+
"figure": {
|
|
4448
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4449
|
+
},
|
|
4450
|
+
"footer": {
|
|
4451
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4452
|
+
},
|
|
4453
|
+
"form": {
|
|
4454
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4455
|
+
},
|
|
4456
|
+
"h1": {
|
|
4457
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4458
|
+
},
|
|
4459
|
+
"h2": {
|
|
4460
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4461
|
+
},
|
|
4462
|
+
"h3": {
|
|
4463
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4464
|
+
},
|
|
4465
|
+
"h4": {
|
|
4466
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4467
|
+
},
|
|
4468
|
+
"h5": {
|
|
4469
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4470
|
+
},
|
|
4471
|
+
"h6": {
|
|
4472
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4473
|
+
},
|
|
4474
|
+
"head": {
|
|
4475
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4476
|
+
},
|
|
4477
|
+
"header": {
|
|
4478
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4479
|
+
},
|
|
4480
|
+
"hgroup": {
|
|
4481
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4482
|
+
},
|
|
4483
|
+
"hr": {
|
|
4484
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4485
|
+
},
|
|
4486
|
+
"html": {
|
|
4487
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4488
|
+
},
|
|
4489
|
+
"i": {
|
|
4490
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4491
|
+
},
|
|
4492
|
+
"iframe": {
|
|
4493
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4494
|
+
},
|
|
4495
|
+
"img": {
|
|
4496
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4497
|
+
},
|
|
4498
|
+
"inline": {
|
|
4499
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4500
|
+
},
|
|
4501
|
+
"input": {
|
|
4502
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4503
|
+
},
|
|
4504
|
+
"ins": {
|
|
4505
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4506
|
+
},
|
|
4507
|
+
"kbd": {
|
|
4508
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4509
|
+
},
|
|
4510
|
+
"label": {
|
|
4511
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4512
|
+
},
|
|
4513
|
+
"legend": {
|
|
4514
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4515
|
+
},
|
|
4516
|
+
"li": {
|
|
4517
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4518
|
+
},
|
|
4519
|
+
"link": {
|
|
4520
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4521
|
+
},
|
|
4522
|
+
"main": {
|
|
4523
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4524
|
+
},
|
|
4525
|
+
"map": {
|
|
4526
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4527
|
+
},
|
|
4528
|
+
"mark": {
|
|
4529
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4530
|
+
},
|
|
4531
|
+
"menu": {
|
|
4532
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4533
|
+
},
|
|
4534
|
+
"meta": {
|
|
4535
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4536
|
+
},
|
|
4537
|
+
"meter": {
|
|
4538
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4539
|
+
},
|
|
4540
|
+
"nav": {
|
|
4541
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4542
|
+
},
|
|
4543
|
+
"noscript": {
|
|
4544
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4545
|
+
},
|
|
4546
|
+
"object": {
|
|
4547
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4548
|
+
},
|
|
4549
|
+
"ol": {
|
|
4550
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4551
|
+
},
|
|
4552
|
+
"optgroup": {
|
|
4553
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4554
|
+
},
|
|
4555
|
+
"option": {
|
|
4556
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4557
|
+
},
|
|
4558
|
+
"output": {
|
|
4559
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4560
|
+
},
|
|
4561
|
+
"p": {
|
|
4562
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4563
|
+
},
|
|
4564
|
+
"picture": {
|
|
4565
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4566
|
+
},
|
|
4567
|
+
"pre": {
|
|
4568
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4569
|
+
},
|
|
4570
|
+
"progress": {
|
|
4571
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4572
|
+
},
|
|
4573
|
+
"q": {
|
|
4574
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4575
|
+
},
|
|
4576
|
+
"rp": {
|
|
4577
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4578
|
+
},
|
|
4579
|
+
"rt": {
|
|
4580
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4581
|
+
},
|
|
4582
|
+
"ruby": {
|
|
4583
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4584
|
+
},
|
|
4585
|
+
"s": {
|
|
4586
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4587
|
+
},
|
|
4588
|
+
"samp": {
|
|
4589
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4590
|
+
},
|
|
4591
|
+
"script": {
|
|
4592
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4593
|
+
},
|
|
4594
|
+
"search": {
|
|
4595
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4596
|
+
},
|
|
4597
|
+
"section": {
|
|
4598
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4599
|
+
},
|
|
4600
|
+
"select": {
|
|
4601
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4602
|
+
},
|
|
4603
|
+
"slot": {
|
|
4604
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4605
|
+
},
|
|
4606
|
+
"small": {
|
|
4607
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4608
|
+
},
|
|
4609
|
+
"source": {
|
|
4610
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4611
|
+
},
|
|
4612
|
+
"span": {
|
|
4613
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4614
|
+
},
|
|
4615
|
+
"strong": {
|
|
4616
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4617
|
+
},
|
|
4618
|
+
"style": {
|
|
4619
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4620
|
+
},
|
|
4621
|
+
"sub": {
|
|
4622
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4623
|
+
},
|
|
4624
|
+
"summary": {
|
|
4625
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4626
|
+
},
|
|
4627
|
+
"sup": {
|
|
4628
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4629
|
+
},
|
|
4630
|
+
"table": {
|
|
4631
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4632
|
+
},
|
|
4633
|
+
"tbody": {
|
|
4634
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4635
|
+
},
|
|
4636
|
+
"td": {
|
|
4637
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4638
|
+
},
|
|
4639
|
+
"template": {
|
|
4640
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4641
|
+
},
|
|
4642
|
+
"textarea": {
|
|
4643
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4644
|
+
},
|
|
4645
|
+
"tfoot": {
|
|
4646
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4647
|
+
},
|
|
4648
|
+
"th": {
|
|
4649
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4650
|
+
},
|
|
4651
|
+
"thead": {
|
|
4652
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4653
|
+
},
|
|
4654
|
+
"time": {
|
|
4655
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4656
|
+
},
|
|
4657
|
+
"title": {
|
|
4658
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4659
|
+
},
|
|
4660
|
+
"tr": {
|
|
4661
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4662
|
+
},
|
|
4663
|
+
"track": {
|
|
4664
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4665
|
+
},
|
|
4666
|
+
"u": {
|
|
4667
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4668
|
+
},
|
|
4669
|
+
"ul": {
|
|
4670
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4671
|
+
},
|
|
4672
|
+
"var": {
|
|
4673
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4674
|
+
},
|
|
4675
|
+
"video": {
|
|
4676
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4677
|
+
},
|
|
4678
|
+
"wbr": {
|
|
4679
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4680
|
+
}
|
|
4681
|
+
},
|
|
4682
|
+
"type": "object"
|
|
4683
|
+
},
|
|
4684
|
+
"MarkdownSettings": {
|
|
4685
|
+
"additionalProperties": false,
|
|
4686
|
+
"properties": {
|
|
4687
|
+
"engine": {
|
|
4688
|
+
"enum": [
|
|
4689
|
+
"commonmark",
|
|
4690
|
+
"kramdown"
|
|
4691
|
+
],
|
|
4692
|
+
"type": "string"
|
|
4693
|
+
},
|
|
4694
|
+
"options": {
|
|
4695
|
+
"additionalProperties": false,
|
|
4696
|
+
"properties": {
|
|
4697
|
+
"attribute_elements": {
|
|
4698
|
+
"$ref": "#/definitions/MarkdownAttributeElementOptions",
|
|
4699
|
+
"description": "Define positioning behaviour of Markdown attributes for different elements.",
|
|
4700
|
+
"markdownDescription": "Define positioning behaviour of Markdown attributes for different elements."
|
|
4701
|
+
},
|
|
4702
|
+
"attributes": {
|
|
4703
|
+
"description": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4704
|
+
"markdownDescription": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
4705
|
+
"type": "boolean"
|
|
4706
|
+
},
|
|
4707
|
+
"breaks": {
|
|
4708
|
+
"description": "Convert '\\n' in paragraphs into <br>.",
|
|
4709
|
+
"markdownDescription": "Convert '\\n' in paragraphs into <br>.",
|
|
4710
|
+
"type": "boolean"
|
|
4711
|
+
},
|
|
4712
|
+
"code_block_fences": {
|
|
4713
|
+
"description": "Determines which style of code block fences to use.",
|
|
4714
|
+
"enum": [
|
|
4715
|
+
"```",
|
|
4716
|
+
"~~~"
|
|
4717
|
+
],
|
|
4718
|
+
"markdownDescription": "Determines which style of code block fences to use.",
|
|
4719
|
+
"type": "string"
|
|
4720
|
+
},
|
|
4721
|
+
"escape_snippets_in_code_blocks": {
|
|
4722
|
+
"description": "Render snippets as plain text within code blocks.",
|
|
4723
|
+
"markdownDescription": "Render snippets as plain text within code blocks.",
|
|
4724
|
+
"type": "boolean"
|
|
4725
|
+
},
|
|
4726
|
+
"gfm": {
|
|
4727
|
+
"description": "Enable GFM mode.",
|
|
4728
|
+
"markdownDescription": "Enable GFM mode.",
|
|
4729
|
+
"type": "boolean"
|
|
4730
|
+
},
|
|
4731
|
+
"heading_ids": {
|
|
4732
|
+
"description": "Generate IDs for headings",
|
|
4733
|
+
"markdownDescription": "Generate IDs for headings",
|
|
4734
|
+
"type": "boolean"
|
|
4735
|
+
},
|
|
4736
|
+
"html": {
|
|
4737
|
+
"description": "Output HTML tags from source.",
|
|
4738
|
+
"markdownDescription": "Output HTML tags from source.",
|
|
4739
|
+
"type": "boolean"
|
|
4740
|
+
},
|
|
4741
|
+
"linkify": {
|
|
4742
|
+
"description": "Autoconvert URL-like text to links.",
|
|
4743
|
+
"markdownDescription": "Autoconvert URL-like text to links.",
|
|
4744
|
+
"type": "boolean"
|
|
4745
|
+
},
|
|
4746
|
+
"quotes": {
|
|
4747
|
+
"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).",
|
|
4748
|
+
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
|
|
4749
|
+
"type": "string"
|
|
4750
|
+
},
|
|
4751
|
+
"sentence_per_line": {
|
|
4752
|
+
"description": "Add linebreaks between sentences in Markdown.",
|
|
4753
|
+
"markdownDescription": "Add linebreaks between sentences in Markdown.",
|
|
4754
|
+
"type": "boolean"
|
|
4755
|
+
},
|
|
4756
|
+
"spaced_lists": {
|
|
4757
|
+
"description": "Output lists with an extra space in Markdown.",
|
|
4758
|
+
"markdownDescription": "Output lists with an extra space in Markdown.",
|
|
4759
|
+
"type": "boolean"
|
|
4760
|
+
},
|
|
4761
|
+
"strikethrough": {
|
|
4762
|
+
"description": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4763
|
+
"markdownDescription": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
|
|
4764
|
+
"type": "boolean"
|
|
4765
|
+
},
|
|
4766
|
+
"subscript": {
|
|
4767
|
+
"description": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4768
|
+
"markdownDescription": "Output subscript in wrapped in tildes (e.g. ~sub~)",
|
|
4769
|
+
"type": "boolean"
|
|
4770
|
+
},
|
|
4771
|
+
"superscript": {
|
|
4772
|
+
"description": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4773
|
+
"markdownDescription": "Output superscript in wrapped in carets (e.g. ^super^)",
|
|
4774
|
+
"type": "boolean"
|
|
4775
|
+
},
|
|
4776
|
+
"table": {
|
|
4777
|
+
"description": "Output tables in Markdown format.",
|
|
4778
|
+
"markdownDescription": "Output tables in Markdown format.",
|
|
4779
|
+
"type": "boolean"
|
|
4780
|
+
},
|
|
4781
|
+
"treat_indentation_as_code": {
|
|
4782
|
+
"description": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4783
|
+
"markdownDescription": "Determines whether 4 spaces on indentation should be read as a code block.",
|
|
4784
|
+
"type": "boolean"
|
|
4785
|
+
},
|
|
4786
|
+
"typographer": {
|
|
4787
|
+
"description": "Enable some language-neutral replacement + quotes beautification.",
|
|
4788
|
+
"markdownDescription": "Enable some language-neutral replacement + quotes beautification.",
|
|
4789
|
+
"type": "boolean"
|
|
4790
|
+
},
|
|
4791
|
+
"xhtml": {
|
|
4792
|
+
"description": "Use '/' to close single tags (<br />).",
|
|
4793
|
+
"markdownDescription": "Use '/' to close single tags (<br />).",
|
|
4794
|
+
"type": "boolean"
|
|
4795
|
+
}
|
|
4796
|
+
},
|
|
4797
|
+
"type": "object"
|
|
4798
|
+
}
|
|
4799
|
+
},
|
|
4800
|
+
"required": [
|
|
4801
|
+
"engine",
|
|
4802
|
+
"options"
|
|
4803
|
+
],
|
|
4804
|
+
"type": "object"
|
|
4805
|
+
},
|
|
4391
4806
|
"MimeType": {
|
|
4392
4807
|
"enum": [
|
|
4393
4808
|
"x-world/x-3dmf",
|
|
@@ -5897,12 +6312,6 @@
|
|
|
5897
6312
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
5898
6313
|
"type": "boolean"
|
|
5899
6314
|
},
|
|
5900
|
-
"correct_orientation": {
|
|
5901
|
-
"default": true,
|
|
5902
|
-
"description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
|
|
5903
|
-
"markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
|
|
5904
|
-
"type": "boolean"
|
|
5905
|
-
},
|
|
5906
6315
|
"embed": {
|
|
5907
6316
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
5908
6317
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
@@ -5979,7 +6388,8 @@
|
|
|
5979
6388
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
5980
6389
|
"enum": [
|
|
5981
6390
|
"image/jpeg",
|
|
5982
|
-
"image/png"
|
|
6391
|
+
"image/png",
|
|
6392
|
+
"image/webp"
|
|
5983
6393
|
],
|
|
5984
6394
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
|
|
5985
6395
|
"type": "string"
|