blockdoc
Version:
A simple, powerful standard for structured content that works beautifully with LLMs, humans, and modern editors
20 lines (16 loc) • 426 B
JavaScript
/**
* BlockDoc
*
* Main entry point for the BlockDoc library
*/
// Core classes
export { Block } from './core/block.js';
export { BlockDocDocument } from './core/document.js';
// Renderers
export { renderToHTML } from './renderers/html.js';
export { renderToMarkdown } from './renderers/markdown.js';
// Schema
import { schema } from './schema-loader.js';
export { schema };
// Version
export const version = '1.0.0';