lua-filters icon indicating copy to clipboard operation
lua-filters copied to clipboard

Feature request: add mermaid to lua-filters/diagram-generator

Open David-Else opened this issue 5 years ago • 0 comments

https://mermaid-js.github.io/mermaid/#/

There is a cli app https://github.com/mermaid-js/mermaid-cli available. You just need to npm install @mermaid-js/mermaid-cli and run it using npx. As an example, to process all the files once extracted:

for i in *.mmd; do npx mmdc -i "$i" -o "${i%.*}.png" -b transparent -t forest; done

Would be great to get that included!

David-Else avatar May 12 '20 21:05 David-Else