UNPKG

legal-markdown-js

Version:

Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version

20 lines 600 B
/** * Simple Browser Entry Point for Testing Vite Build * * This is a minimal entry point to test if Vite can bundle * the remark dependencies properly. */ // Import only the essential processor import { processLegalMarkdownWithRemark } from './extensions/remark/legal-markdown-processor.js'; /** * Process Legal Markdown content */ export async function processLegalMarkdown(content, options = {}) { return processLegalMarkdownWithRemark(content, options); } // Default export export default { processLegalMarkdown, version: '2.16.3', }; //# sourceMappingURL=browser-simple.js.map