| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "kevinbatdorf/code-block-pro", |
| 5 |
"version": "0.1.0", |
| 6 |
"title": "Code Block Pro", |
| 7 |
"category": "common", |
| 8 |
"description": "Code highlighting powered by the VS Code engine", |
| 9 |
"attributes": { |
| 10 |
"code": { |
| 11 |
"type": "string" |
| 12 |
}, |
| 13 |
"codeHTML": { |
| 14 |
"type": "string" |
| 15 |
}, |
| 16 |
"language": { |
| 17 |
"type": "string" |
| 18 |
}, |
| 19 |
"theme": { |
| 20 |
"type": "string" |
| 21 |
}, |
| 22 |
"align": { |
| 23 |
"type": "string", |
| 24 |
"default": "center" |
| 25 |
}, |
| 26 |
"bgColor": { |
| 27 |
"type": "string", |
| 28 |
"default": "#282a37" |
| 29 |
}, |
| 30 |
"textColor": { |
| 31 |
"type": "string", |
| 32 |
"default": "#f8f8f2" |
| 33 |
}, |
| 34 |
"lineNumbers": { |
| 35 |
"type": "boolean" |
| 36 |
}, |
| 37 |
"startingLineNumber": { |
| 38 |
"type": "number", |
| 39 |
"default": 1 |
| 40 |
}, |
| 41 |
"frame": { |
| 42 |
"type": "boolean" |
| 43 |
}, |
| 44 |
"renderType": { |
| 45 |
"type": "string", |
| 46 |
"default": "code" |
| 47 |
}, |
| 48 |
"label": { |
| 49 |
"type": "string", |
| 50 |
"default": "" |
| 51 |
}, |
| 52 |
"copyButton": { |
| 53 |
"type": "boolean" |
| 54 |
} |
| 55 |
}, |
| 56 |
"supports": { |
| 57 |
"html": false, |
| 58 |
"align": true |
| 59 |
}, |
| 60 |
"textdomain": "code-block-pro", |
| 61 |
"editorScript": "file:./index.js", |
| 62 |
"editorStyle": "file:./index.css", |
| 63 |
"style": "file:./style-index.css", |
| 64 |
"viewScript": "file:./front/front.js" |
| 65 |
} |