PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
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 / scripts / block-library / math / block.json
build/scripts/block-library/math
block.json 986 B 7 months ago

block.json in Gutenberg 23.2.0, at build/scripts/block-library/math/block.json

53 lines 986 B Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "core/math",
5 "title": "Math",
6 "category": "text",
7 "description": "Display mathematical notation using LaTeX.",
8 "keywords": [ "equation", "formula", "latex", "mathematics" ],
9 "textdomain": "default",
10 "supports": {
11 "anchor": true,
12 "html": false,
13 "__experimentalBorder": {
14 "color": true,
15 "radius": true,
16 "style": true,
17 "width": true
18 },
19 "color": {
20 "gradients": true,
21 "__experimentalDefaultControls": {
22 "background": true,
23 "text": true
24 }
25 },
26 "spacing": {
27 "margin": true,
28 "padding": true,
29 "__experimentalDefaultControls": {
30 "margin": false,
31 "padding": false
32 }
33 },
34 "typography": {
35 "fontSize": true,
36 "__experimentalDefaultControls": {
37 "fontSize": true
38 }
39 }
40 },
41 "attributes": {
42 "latex": {
43 "type": "string",
44 "role": "content"
45 },
46 "mathML": {
47 "type": "string",
48 "source": "html",
49 "selector": "math"
50 }
51 }
52 }
53