2015-03-07 12:28:52 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2015-07-22 00:36:31 -04:00
|
|
|
<link rel="stylesheet" href="bower_components/qunit/qunit/qunit.css" />
|
|
|
|
<link rel="stylesheet" href="../../dist/mermaid.forest.css"/>
|
2015-03-07 12:28:52 +01:00
|
|
|
|
2015-07-22 00:36:31 -04:00
|
|
|
<script src="bower_components/qunit/qunit/qunit.js"></script>
|
2015-03-07 12:28:52 +01:00
|
|
|
<script>
|
2015-07-22 00:36:31 -04:00
|
|
|
QUnit.config.autostart = false;
|
2015-03-07 12:28:52 +01:00
|
|
|
</script>
|
2015-07-22 00:36:31 -04:00
|
|
|
|
|
|
|
<script data-main="reqJsApp.js" src="bower_components/requirejs/require.js"></script>
|
2015-03-07 12:28:52 +01:00
|
|
|
</head>
|
2015-07-22 00:36:31 -04:00
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="qunit"></div>
|
|
|
|
<div id="qunit-fixture"></div>
|
2015-03-07 12:28:52 +01:00
|
|
|
<div class="mermaid">
|
2015-07-22 00:36:31 -04:00
|
|
|
graph LR
|
|
|
|
A-->B
|
|
|
|
B-->C
|
|
|
|
C-->A
|
|
|
|
D-->C
|
2015-03-07 12:28:52 +01:00
|
|
|
</div>
|
2015-07-22 00:36:31 -04:00
|
|
|
</body>
|
2015-03-07 12:28:52 +01:00
|
|
|
</html>
|