summaryrefslogtreecommitdiffstats
path: root/wp-includes/blocks/quote/block.json
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/blocks/quote/block.json')
-rw-r--r--wp-includes/blocks/quote/block.json69
1 files changed, 69 insertions, 0 deletions
diff --git a/wp-includes/blocks/quote/block.json b/wp-includes/blocks/quote/block.json
new file mode 100644
index 0000000..eff4649
--- /dev/null
+++ b/wp-includes/blocks/quote/block.json
@@ -0,0 +1,69 @@
+{
+ "$schema": "https://schemas.wp.org/trunk/block.json",
+ "apiVersion": 3,
+ "name": "core/quote",
+ "title": "Quote",
+ "category": "text",
+ "description": "Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar",
+ "keywords": [ "blockquote", "cite" ],
+ "textdomain": "default",
+ "attributes": {
+ "value": {
+ "type": "string",
+ "source": "html",
+ "selector": "blockquote",
+ "multiline": "p",
+ "default": "",
+ "__experimentalRole": "content"
+ },
+ "citation": {
+ "type": "string",
+ "source": "html",
+ "selector": "cite",
+ "default": "",
+ "__experimentalRole": "content"
+ },
+ "align": {
+ "type": "string"
+ }
+ },
+ "supports": {
+ "anchor": true,
+ "html": false,
+ "__experimentalOnEnter": true,
+ "__experimentalOnMerge": true,
+ "typography": {
+ "fontSize": true,
+ "lineHeight": true,
+ "__experimentalFontFamily": true,
+ "__experimentalFontWeight": true,
+ "__experimentalFontStyle": true,
+ "__experimentalTextTransform": true,
+ "__experimentalTextDecoration": true,
+ "__experimentalLetterSpacing": true,
+ "__experimentalDefaultControls": {
+ "fontSize": true,
+ "fontAppearance": true
+ }
+ },
+ "color": {
+ "gradients": true,
+ "heading": true,
+ "link": true,
+ "__experimentalDefaultControls": {
+ "background": true,
+ "text": true
+ }
+ }
+ },
+ "styles": [
+ {
+ "name": "default",
+ "label": "Default",
+ "isDefault": true
+ },
+ { "name": "plain", "label": "Plain" }
+ ],
+ "editorStyle": "wp-block-quote-editor",
+ "style": "wp-block-quote"
+}