PluginProbe
Gutenberg / 23.5.1
Gutenberg v23.5.1
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 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / code / block.json

block.json in Gutenberg 23.5.1, at build/scripts/block-library/code/block.json

67 lines 1.4 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": 3,
4 "name": "core/code",
5 "title": "Code",
6 "category": "text",
7 "description": "Display code snippets that respect your spacing and tabs.",
8 "textdomain": "default",
9 "attributes": {
10 "content": {
11 "type": "rich-text",
12 "source": "rich-text",
13 "selector": "code",
14 "__unstablePreserveWhiteSpace": true,
15 "role": "content"
16 }
17 },
18 "supports": {
19 "align": [ "wide" ],
20 "anchor": true,
21 "typography": {
22 "fontSize": true,
23 "lineHeight": true,
24 "__experimentalFontFamily": true,
25 "__experimentalFontWeight": true,
26 "__experimentalFontStyle": true,
27 "__experimentalTextTransform": true,
28 "__experimentalTextDecoration": true,
29 "__experimentalLetterSpacing": true,
30 "__experimentalDefaultControls": {
31 "fontSize": true
32 }
33 },
34 "spacing": {
35 "margin": [ "top", "bottom" ],
36 "padding": true,
37 "__experimentalDefaultControls": {
38 "margin": false,
39 "padding": false
40 }
41 },
42 "__experimentalBorder": {
43 "radius": true,
44 "color": true,
45 "width": true,
46 "style": true,
47 "__experimentalDefaultControls": {
48 "width": true,
49 "color": true
50 }
51 },
52 "color": {
53 "text": true,
54 "background": true,
55 "gradients": true,
56 "__experimentalDefaultControls": {
57 "background": true,
58 "text": true
59 }
60 },
61 "interactivity": {
62 "clientNavigation": true
63 }
64 },
65 "style": "wp-block-code"
66 }
67