diff options
author | listout <listout@protonmail.com> | 2021-04-21 20:22:23 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2021-04-21 20:22:23 +0530 |
commit | 719e33a469ca4b4541505477e062ea58d52b68df (patch) | |
tree | be6c814a7692118535e5875cc6715eba29e336ed /my_snippets | |
parent | 9f84c664044bc535daa166f521218e5e24553cbc (diff) |
added snippet for graphviz diagram in markdown
Diffstat (limited to 'my_snippets')
-rw-r--r-- | my_snippets/markdown.snippets | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/my_snippets/markdown.snippets b/my_snippets/markdown.snippets new file mode 100644 index 0000000..0e1b165 --- /dev/null +++ b/my_snippets/markdown.snippets @@ -0,0 +1,11 @@ +snippet graphviz "Graphviz dot snippet" +\`\`\`{.graphviz} +digraph g { + rankdir=LR + node[shape=none] + node[shape=doublecircle] + node[shape=circle] + $1 +} +\`\`\` +endsnippet |