mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
28 lines
644 B
HTML
28 lines
644 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="bower_components/qunit/qunit/qunit.css" />
|
|
<link rel="stylesheet" href="../../dist/mermaid.forest.css"/>
|
|
|
|
<script src="bower_components/qunit/qunit/qunit.js"></script>
|
|
<script>
|
|
QUnit.config.autostart = false;
|
|
</script>
|
|
|
|
<script data-main="reqJsApp.js" src="bower_components/requirejs/require.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
<div class="mermaid">
|
|
graph LR
|
|
A-->B
|
|
B-->C
|
|
C-->A
|
|
D-->C
|
|
</div>
|
|
</body>
|
|
</html>
|