## サンプル
~~~{.graphviz width="0.8"}
#define ICON(name) peripheries=0 image="awsicons/"+name+".png"
digraph {
ELB [ICON("elb")]
インスタンスa [ICON("instance")]
インスタンスb [ICON("instance")]
ELB -> {インスタンスa インスタンスb}
}
~~~
-
-
Save ooharak/3602603a647b53c8e432 to your computer and use it in GitHub Desktop.
Pandoc+beamer+GraphvizでAWSの図を描く ref: http://qiita.com/ooharak/items/78f79fe8a57668550a82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~~~graphviz | |
digraph { | |
a->b | |
} | |
~~~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pandoc -s a.md -t html5 --self-contained -o a.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment