914 B36 lines
Blame
1<!doctype html>
2<html lang="en">
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 div.mermaid {
10 font-family: 'Courier New', Courier, monospace !important;
11 }
12 </style>
13 </head>
14
15 <body>
16 <h1>Pie chart demos</h1>
17 <pre class="mermaid">
18 pie title Default text position: Animal adoption
19 accTitle: simple pie char demo
20 accDescr: pie chart with 3 sections: dogs, cats, rats. Most are dogs.
21 "dogs" : -60.67
22 "rats" : 40.12
23 </pre>
24
25 <hr />
26 <script type="module">
27 import mermaid from '/mermaid.esm.mjs';
28 mermaid.initialize({
29 theme: 'forest',
30 logLevel: 3,
31 securityLevel: 'loose',
32 });
33 </script>
34 </body>
35</html>
36