mermaid-to-excalidraw
Convert mermaid diagrams to excalidraw
Set up
Install packages:
yarn
Start development playground:
yarn start
Build command:
yarn build
Get started
parseMermaidToExcalidraw(diagramDefinition: string, config?: MermaidConfig)
The diagramDefinition
is the mermaid diagram definition.
and config
is the mermaid config. You can use the config
param when you want to pass some custom config to mermaid.
Currently mermaid-to-excalidraw
only supports the :point_down: config params
{
startOnLoad?: boolean;
flowchart?: {
curve?: "linear" | "basis";
};
themeVariables?: {
fontSize?: string;
};
maxEdges?: number;
maxTextSize?: number;
}
Example code:
import { parseMermaidToExcalidraw } from "@excalidraw/mermaid-to-excalidraw";
try {
const { elements, files } = await parseMermaidToExcalidraw(
diagramDefinition,
{
themeVariables: {
fontSize: "25px",
},
}
);
} catch (e) {
}
Playground
Try out here.
API
Head over to the docs.
Support new Diagram type
Head over to the docs.