wp/wp-includes/blocks/quote/block.json
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
equal deleted inserted replaced
17:34716fd837a4 18:be944660c56a
     1 {
     1 {
       
     2 	"apiVersion": 2,
     2 	"name": "core/quote",
     3 	"name": "core/quote",
       
     4 	"title": "Quote",
     3 	"category": "text",
     5 	"category": "text",
       
     6 	"description": "Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar",
       
     7 	"keywords": [ "blockquote", "cite" ],
       
     8 	"textdomain": "default",
     4 	"attributes": {
     9 	"attributes": {
     5 		"value": {
    10 		"value": {
     6 			"type": "string",
    11 			"type": "string",
     7 			"source": "html",
    12 			"source": "html",
     8 			"selector": "blockquote",
    13 			"selector": "blockquote",
     9 			"multiline": "p",
    14 			"multiline": "p",
    10 			"default": ""
    15 			"default": "",
       
    16 			"__experimentalRole": "content"
    11 		},
    17 		},
    12 		"citation": {
    18 		"citation": {
    13 			"type": "string",
    19 			"type": "string",
    14 			"source": "html",
    20 			"source": "html",
    15 			"selector": "cite",
    21 			"selector": "cite",
    16 			"default": ""
    22 			"default": "",
       
    23 			"__experimentalRole": "content"
    17 		},
    24 		},
    18 		"align": {
    25 		"align": {
    19 			"type": "string"
    26 			"type": "string"
    20 		}
    27 		}
    21 	},
    28 	},
    22 	"supports": {
    29 	"supports": {
    23 		"anchor": true
    30 		"anchor": true
    24 	}
    31 	},
       
    32 	"styles": [
       
    33 		{
       
    34 			"name": "default",
       
    35 			"label": "Default",
       
    36 			"isDefault": true
       
    37 		},
       
    38 		{ "name": "large", "label": "Large" }
       
    39 	],
       
    40 	"editorStyle": "wp-block-quote-editor",
       
    41 	"style": "wp-block-quote"
    25 }
    42 }