block.json in Gutenberg 10.4.1, at build/block-library/blocks/paragraph/block.json
| 1 | { |
| 2 | "apiVersion": 2, |
| 3 | "name": "core/paragraph", |
| 4 | "category": "text", |
| 5 | "attributes": { |
| 6 | "align": { |
| 7 | "type": "string" |
| 8 | }, |
| 9 | "content": { |
| 10 | "type": "string", |
| 11 | "source": "html", |
| 12 | "selector": "p", |
| 13 | "default": "" |
| 14 | }, |
| 15 | "dropCap": { |
| 16 | "type": "boolean", |
| 17 | "default": false |
| 18 | }, |
| 19 | "placeholder": { |
| 20 | "type": "string" |
| 21 | }, |
| 22 | "direction": { |
| 23 | "type": "string", |
| 24 | "enum": [ |
| 25 | "ltr", |
| 26 | "rtl" |
| 27 | ] |
| 28 | } |
| 29 | }, |
| 30 | "supports": { |
| 31 | "anchor": true, |
| 32 | "className": false, |
| 33 | "color": { |
| 34 | "link": true |
| 35 | }, |
| 36 | "fontSize": true, |
| 37 | "lineHeight": true, |
| 38 | "__experimentalSelector": "p", |
| 39 | "__unstablePasteTextInline": true |
| 40 | }, |
| 41 | "editorStyle": "wp-block-paragraph-editor", |
| 42 | "style": "wp-block-paragraph" |
| 43 | } |
| 44 |