block.json
9 months ago
view.asset.php
8 months ago
view.css
9 months ago
view.js
8 months ago
view.rtl.css
9 months ago
block.json
25 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/latex", |
| 5 | "version": "0.1.0", |
| 6 | "title": "LaTeX", |
| 7 | "category": "formatting", |
| 8 | "description": "Create and display LaTeX with live preview and easy editing.", |
| 9 | "example": { |
| 10 | "attributes": { |
| 11 | "latex": "\\frac{a}{b}" |
| 12 | } |
| 13 | }, |
| 14 | "attributes": { |
| 15 | "latex": { |
| 16 | "type": "string", |
| 17 | "default": "" |
| 18 | } |
| 19 | }, |
| 20 | "supports": { |
| 21 | "html": false |
| 22 | }, |
| 23 | "textdomain": "jetpack", |
| 24 | "editorScript": "jetpack-blocks-editor" |
| 25 | } |