mermaid: Generate flowcharts and diagrams from text using Node.js

https://github.com/knsv/mermaid


Now ya’ll know I love me some Markdown, and while this isn’t quite a pretty to read in text format as Markdown is, mermaid scratches a similar itch for me. It provides a way to represent flowcharts and diagrams using text, making it easy to easily store and compare them in your source control repository.

Example

graph LR;
    A[Hard edge]-->|Link text|B(Round edge);
    B-->C{Decision};
    C-->|One|D[Result one];
    C-->|Two|E[Result two];

Example flowchart

Additional examples here: http://www.sveido.com/mermaid/demo/html/web.html

MDwiki: Javascript/HTML 5 CMS/Wiki that runs on the client

http://dynalon.github.io/mdwiki/#!index.md

Ya’ll know how I like my Markdown. Markdown and wikis. Like chocolate and peanut butter.

From the MDwiki webpage:

MDwiki is a CMS/Wiki completely built in HTML5/Javascript and runs 100% on the client. No special software installation or server side processing is > required. Just upload the mdwiki.html shipped with MDwiki into the same directory as your markdown files and you are good to go!