collab/mermaid/cypress/platform/flow.htmlblame
View source
6dd74de1<html>
6dd74de2 <head>
6dd74de3 <link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
6dd74de4 <style>
6dd74de5 body {
6dd74de6 font-family: 'trebuchet ms', verdana, arial;
6dd74de7 }
6dd74de8 </style>
6dd74de9 </head>
6dd74de10 <body>
6dd74de11 <pre class="mermaid">
6dd74de12 graph TB
6dd74de13 subgraph One
6dd74de14 a1-->a2-->a3
6dd74de15 end
6dd74de16 </pre>
6dd74de17 <pre class="mermaid">
6dd74de18 graph TB
6dd74de19 a_a --> b_b:::apa --> c_c:::apa
6dd74de20 classDef apa fill:#f9f,stroke:#333,stroke-width:4px;
6dd74de21 class a_a apa;
6dd74de22 </pre>
6dd74de23 <pre class="mermaid">
6dd74de24 graph TB
6dd74de25 a_a(Aftonbladet) --> b_b[gorilla]:::apa --> c_c{chimp}:::apa -->a_a
6dd74de26 a_a --> c --> d_d --> c_c
6dd74de27 classDef apa fill:#f9f,stroke:#333,stroke-width:4px;
6dd74de28 class a_a apa;
6dd74de29 click a_a "http://www.aftonbladet.se" "apa"
6dd74de30 </pre>
6dd74de31
6dd74de32 <script type="module">
6dd74de33 import mermaid from './mermaid.esm.mjs';
6dd74de34 mermaid.initialize({
6dd74de35 theme: 'forest',
6dd74de36 // themeCSS: '.node rect { fill: red; }',
6dd74de37 logLevel: 3,
6dd74de38 flowchart: { curve: 'linear' },
6dd74de39 gantt: { axisFormat: '%m/%d/%Y' },
6dd74de40 sequence: { actorMargin: 50 },
6dd74de41 // sequenceDiagram: { actorMargin: 300 } // deprecated
6dd74de42 });
6dd74de43 </script>
6dd74de44 </body>
6dd74de45</html>