Started renderer development

This commit is contained in:
Nikolay Rozhkov
2023-06-18 01:32:45 +03:00
parent 5eae790740
commit 40f7105ae4
7 changed files with 199 additions and 84 deletions

View File

@@ -75,6 +75,9 @@
<li>
<h2><a href="./zenuml.html">ZenUML</a></h2>
</li>
<li>
<h2><a href="./sankey.html">Sankey</a></h2>
</li>
</ul>
</body>
</html>

View File

@@ -16,15 +16,11 @@
<h1>Sankey diagram demos</h1>
<h2>Simple flow</h2>
<pre class="mermaid">
stateDiagram-v2
direction LR
State1: A state with a note
note right of State1
Important information!<br />You can write notes.<br />And\nthey\ncan\nbe\nmulti-\nline.
end note
State1 --> State2
note left of State2 : Notes can be to the left of a state\n(like this one).
note right of State2 : Notes can be to the right of a state\n(like this one).
sankey
a--10->b
c--20->b
b--15->d
a-- 7->d
</pre>
<script type="module">
import mermaid from './mermaid.esm.mjs';