Created
December 23, 2014 13:30
-
-
Save sihorton/d4e3d4b7a0cf48c61118 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/mizazo
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdn.rawgit.com/knsv/mermaid/master/dist/mermaid.full.min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="mermaid"> | |
graph TD; | |
A-->B; | |
A-->C; | |
B-->D; | |
C-->D; | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment