| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "kevinbatdorf/code-block-pro", |
| 5 |
"version": "1.2.0", |
| 6 |
"title": "Code Block Pro", |
| 7 |
"category": "common", |
| 8 |
"description": "Code highlighting powered by the VS Code engine", |
| 9 |
"attributes": { |
| 10 |
"code": { "type": "string" }, |
| 11 |
"codeHTML": { "type": "string" }, |
| 12 |
"language": { "type": "string" }, |
| 13 |
"theme": { "type": "string" }, |
| 14 |
"align": { "type": "string" }, |
| 15 |
"bgColor": { "type": "string", "default": "#282a37" }, |
| 16 |
"textColor": { "type": "string", "default": "#f8f8f2" }, |
| 17 |
"lineNumbers": { "type": "boolean" }, |
| 18 |
"startingLineNumber": { "type": "number", "default": 1 }, |
| 19 |
"frame": { "type": "boolean" }, |
| 20 |
"renderType": { "type": "string", "default": "code" }, |
| 21 |
"label": { "type": "string", "default": "" }, |
| 22 |
"copyButton": { "type": "boolean" } |
| 23 |
}, |
| 24 |
"supports": { |
| 25 |
"html": false, |
| 26 |
"align": ["wide", "full"] |
| 27 |
}, |
| 28 |
"textdomain": "code-block-pro", |
| 29 |
"editorScript": "file:./index.js", |
| 30 |
"editorStyle": "file:./index.css", |
| 31 |
"style": "file:./style-index.css", |
| 32 |
"viewScript": "file:./front/front.js" |
| 33 |
} |
| 34 |
|