Takes a mermaid document (as a string) and returns an http handler that renders it.
import { displayMermaid } from "https://esm.town/v/saolsen/display_mermaid";
const mermaid = `
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
Alice-)John: See you later!
`;
export default displayMermaid(mermaid);
Migrated from folder: display/display_mermaid