PluginProbe
Gutenberg / 12.7.1
Gutenberg v12.7.1
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / block-library / blocks / quote / block.json

block.json in Gutenberg 12.7.1, at build/block-library/blocks/quote/block.json

57 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 2,
4 "name": "core/quote",
5 "title": "Quote",
6 "category": "text",
7 "description": "Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar",
8 "keywords": [ "blockquote", "cite" ],
9 "textdomain": "default",
10 "attributes": {
11 "value": {
12 "type": "string",
13 "source": "html",
14 "selector": "blockquote",
15 "multiline": "p",
16 "default": "",
17 "__experimentalRole": "content"
18 },
19 "citation": {
20 "type": "string",
21 "source": "html",
22 "selector": "cite",
23 "default": "",
24 "__experimentalRole": "content"
25 },
26 "align": {
27 "type": "string"
28 }
29 },
30 "supports": {
31 "anchor": true,
32 "__experimentalSlashInserter": true,
33 "typography": {
34 "fontSize": true,
35 "lineHeight": true,
36 "__experimentalFontStyle": true,
37 "__experimentalFontWeight": true,
38 "__experimentalLetterSpacing": true,
39 "__experimentalTextTransform": true,
40 "__experimentalDefaultControls": {
41 "fontSize": true,
42 "fontAppearance": true
43 }
44 }
45 },
46 "styles": [
47 {
48 "name": "default",
49 "label": "Default",
50 "isDefault": true
51 },
52 { "name": "plain", "label": "Plain" }
53 ],
54 "editorStyle": "wp-block-quote-editor",
55 "style": "wp-block-quote"
56 }
57