willtim / GraphVizify

A pandoc-based tool allowing one to use inline GraphViz dot/neato inside Markdown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GraphVizify

A pandoc-based tool allowing one to use inline GraphViz dot/neato inside Markdown

To process this file, use pipes, for example:

 cat README.md | graphvizify -Tpng -oimages | pandoc > output.html

Example inline GraphViz pictures below

Note that the captions are optional.

digraph G1 {
    node[shape=box]
    a -> b;
    b -> c;
    a -> c;
}
graph G1 {
    a -- b;
    b -- c;
    a -- c;
}

About

A pandoc-based tool allowing one to use inline GraphViz dot/neato inside Markdown


Languages

Language:Haskell 100.0%