858 B38 lines
Blame
1<!doctype html>
2<html>
3 <head>
4 <meta charset="utf-8" />
5 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6 <title>Mermaid Quick Test Page</title>
7 <link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" />
8 <style>
9 body {
10 font-family: 'trebuchet ms', verdana, arial;
11 }
12 </style>
13 </head>
14 <body>
15 <pre class="mermaid">
16 info
17 </pre>
18 <pre class="mermaid">
19 graph TD
20 subgraph one
21 1
22 end
23 </pre>
24 <pre class="mermaid">
25 graph TD
26 A --> B --> C
27 </pre>
28
29 <script type="module">
30 import mermaid from './mermaid.esm.mjs';
31 function showFullFirstSquad(elemName) {
32 console.log('show ' + elemName);
33 }
34 mermaid.initialize({ startOnLoad: true, securityLevel: 'loose', logLevel: 1 });
35 </script>
36 </body>
37</html>
38