Skip to content

Instantly share code, notes, and snippets.

@meoso
Created January 20, 2017 20:30
Show Gist options
  • Save meoso/9155cf8d0258145da89d79bf4eee399b to your computer and use it in GitHub Desktop.
Save meoso/9155cf8d0258145da89d79bf4eee399b to your computer and use it in GitHub Desktop.
Strapdown-Zeta template via https://github.com/chaitin/strapdown-zeta | Simplest flat markdown renderer with TOC ; Gravizo compatible
<!DOCTYPE html> <html> <title>Page Title</title> <meta charset="utf-8">
<xmp theme="flatly" style="display:none;" src="somefile.md" toc="true">
Markdown content
===
![Alt text](http://g.gravizo.com/g?
digraph G {
nodesep=1.0;
a [label="start"];
b [label="here"];
c [label="there"];
r [label="somewhere"];
a -> b -> c ;
c -> a [color="red"];
b -> r ;
}
)
</xmp> <script src="http://cdn.ztx.io/strapdown/strapdown.min.js"></script> </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment