import { VERSION } from "../version.js"; export function createSyntaxDiagramsCode(grammar, { resourceBase = `https://unpkg.com/chevrotain@${VERSION}/diagrams/`, css = `https://unpkg.com/chevrotain@${VERSION}/diagrams/diagrams.css`, } = {}) { const header = ` `; const cssHtml = ` `; const scripts = ` `; const diagramsDiv = `
`; const serializedGrammar = ` `; const initLogic = ` `; return (header + cssHtml + scripts + diagramsDiv + serializedGrammar + initLogic); } //# sourceMappingURL=render_public.js.map