Hacker News new | ask | show | jobs
by The_Colonel 1064 days ago
I believe PlantUML was basically the inspiration for MermaidJS. A huge advantage of MermaidJS is that it can run in the browser, though.
1 comments

And if you start a markdown codeblock like

    ```mermaid
    graph TD;
      A-->B
    ```
Many things that support markdown (e.g. github, gitlab, typora, ...) will render the resulting graph.
That features is also a feature Mermaid/Markdown renderers have borrowed from existing uses of PlantUML. You've been able to embed PlantUML in a Markdown block in Gitlab (and have it rendered inline as an image) since before MermaidJS ever existed. Github's embedded MermaidJS feature is years late.
unfortunately, you need a PlanetUML server when using a self hosted gitlab install.

running directly in the browser is, imho, the best feature of mermaidjs