{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "xhtheme/code-block",
	"version": "1.0",
	"title": "Code Block",
	"description": "A customizable code block component for displaying and editing code snippets with syntax highlighting.",
	"example": {},
	"keywords": [ "Code","Syntax Highlighting "],
	"attributes": {
        "language": {
            "type": "string",
            "default": "",
            "source": "attribute",
            "selector": "code",
            "attribute": "lang"
        },
        "languagename": {
            "type": "string",
            "default": ""
        },
        "filename": {
            "type": "string",
            "default": ""
        },
        "content": {
            "type": "string",
            "source": "html",
            "selector": "code"
        }
    },
	"supports": { 
        "html": false
    },
	"textdomain": "xhtheme-code-block",
	"editorScript": "file:./index.js",
	"editorStyle": "file:./index.css"
}