{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "gfm-renderer/markdown",
	"version": "0.1.0",
	"title": "Markdown",
	"category": "text",
	"icon": "editor-code",
	"description": "Write in GitHub Flavored Markdown with real-time preview.",
	"keywords": ["markdown", "gfm", "github", "code"],
	"attributes": {
		"content": {
			"type": "string",
			"default": ""
		},
		"html": {
			"type": "string",
			"default": ""
		},
		"mermaidBgColor": {
			"type": "string",
			"default": "transparent"
		},
		"shikiTheme": {
			"type": "string",
			"default": ""
		},
		"showFrontmatter": {
			"type": "boolean",
			"default": false
		},
		"frontmatterData": {
			"type": "object",
			"default": {}
		},
		"languages": {
			"type": "object",
			"default": {}
		},
		"defaultLanguage": {
			"type": "string",
			"default": "en"
		},
		"availableLanguages": {
			"type": "array",
			"default": [],
			"items": {
				"type": "string"
			}
		},
		"showLanguageSwitcher": {
			"type": "boolean",
			"default": true
		}
	},
	"example": {
		"attributes": {
			"content": "# Heading 1\n\n**Bold** text and *italic* text.\n\n- List item 1\n- List item 2\n\n```javascript\nconst greeting = \"Hello, World!\";\nconsole.log(greeting);\n```"
		}
	},
	"supports": {
		"html": false,
		"className": true,
		"customClassName": true,
		"align": ["wide", "full"]
	},
	"textdomain": "markdown-renderer-for-github",
	"editorScript": "gfmr-renderer-editor",
	"editorStyle": [
		"gfmr-variables",
		"gfmr-theme-variables",
		"gfmr-table-styles",
		"gfmr-code-blocks",
		"gfmr-mermaid-styles",
		"gfmr-renderer-editor-css",
		"gfmr-multilingual-editor"
	],
	"style": ["gfmr-variables", "gfmr-table-styles", "gfmr-code-blocks", "gfmr-frontmatter", "gfmr-block-style"]
}
