mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-13 12:29:42 +02:00
Fix for issue #262
This commit is contained in:
23
test/examples/htmlLabelsFalse.html
Normal file
23
test/examples/htmlLabelsFalse.html
Normal file
@@ -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>
|
Reference in New Issue
Block a user