Installation
@excalidraw/mermaid-to-excalidraw is published to npm. This library is used in excalidraw to transform mermaid syntax to Excalidraw diagrams.
Using npm
npm install @excalidraw/mermaid-to-excalidraw
Using yarn
yarn add @excalidraw/mermaid-to-excalidraw
Usage
Once the library is installed, its ready to use.
import { parseMermaidToExcalidraw } from "@excalidraw/mermaid-to-excalidraw";
import { convertToExcalidrawElements}  from "@excalidraw/excalidraw"
try {
  const { elements, files } = await parseMermaid(diagramDefinition, {
    fontSize: DEFAULT_FONT_SIZE,
  });
  // currently the elements returned from the parser are in a "skeleton" format
  // which we need to convert to fully qualified excalidraw elements first
  const excalidrawElements = convertToExcalidrawElements(elements);
  // Render elements and files on Excalidraw
} catch (e) {
  // Error handling
}
Playground
Try it out here