-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
knsv
authored and
knsv
committed
Dec 27, 2015
1 parent
cc8c5ae
commit d56af02
Showing
6 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
<link rel="stylesheet" type="text/css" href="https://rawgit.com/knsv/mermaid/master/dist/mermaid.css"> | ||
<base href="XXX"/> | ||
<script src="../../dist/mermaid.js"></script> | ||
</head><body> | ||
<script> | ||
mermaid.initialize({ | ||
flowchart:{ | ||
htmlLabels:false | ||
} | ||
}); | ||
</script> | ||
<h1>The nodes should not be false</h1> | ||
<div class="mermaid"> | ||
graph LR; | ||
A[Node A]-->B[Node B]; | ||
B-->C[Node C]; | ||
</div> | ||
</body></html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
<link rel="stylesheet" type="text/css" href="dist/mermaid.css"> | ||
<style> | ||
.node text { | ||
font-size: 14px; | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serf; | ||
} | ||
|
||
</style> | ||
<script src="../../dist/mermaid.js"></script> | ||
</head><body> | ||
<script> | ||
mermaid.initialize({ | ||
flowchart:{ | ||
useMaxWidth:true, | ||
htmlLabels:false | ||
}, | ||
startOnLoad:true | ||
}); | ||
</script> | ||
<h1>The text should be inside the boxes</h1> | ||
<div class="mermaid" id="i211"> | ||
graph TD; | ||
A[TESTTESTTESTTESTTESTTESTTEST]; | ||
A --> B[testtesttesttesttesttesttesttesttesttesttest]; | ||
</div> | ||
</body></html> |