0.1.1 • Published 7 years ago

markdown-diagram v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Markdown-Diagram

How do you build a diagram for the structure in a markdown document? Just read this one.

Command-line interface

In some cases (eg. if your documents are private) you might want to generate this diagrams offline. You can use the CLI to get a static html file like this:

npm i markdown-diagram -g

# show all options
markdown-diagram --help

# generate full html doc
cat ./docs/page/services.md | markdown-diagram > services.html
# OR
markdown-diagram ./docs/page/services.md > services.html

# only the svg diagram
markdown-diagram --format svg ./docs/page/services.md > services.svg