2019-11-27 20:15:21 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
2020-02-16 15:39:52 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap" rel="stylesheet">
|
2019-12-08 10:10:03 +01:00
|
|
|
<style>
|
2020-02-16 15:39:52 +01:00
|
|
|
body {
|
|
|
|
background: white;
|
2020-03-08 09:49:41 +01:00
|
|
|
font-family: 'Arial';
|
2020-02-16 15:39:52 +01:00
|
|
|
}
|
2019-12-08 10:10:03 +01:00
|
|
|
h1 { color: white;}
|
|
|
|
.arrowheadPath {fill: red;}
|
2019-11-27 20:15:21 +01:00
|
|
|
|
2019-12-08 10:10:03 +01:00
|
|
|
.edgePath .path {stroke: red;}
|
2020-03-14 17:38:35 +01:00
|
|
|
.mermaid2 {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-12-08 10:10:03 +01:00
|
|
|
</style>
|
2019-11-27 20:15:21 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>info below</h1>
|
2020-03-14 08:24:45 +01:00
|
|
|
<div style="display: flex;flex-direction:column;width: 100%; height: 100%">
|
2020-03-08 09:49:41 +01:00
|
|
|
<div class="mermaid2" style="width: 100%; height: 100%;display: none;">
|
2020-03-04 20:35:59 +01:00
|
|
|
flowchart LR
|
2020-03-08 09:49:41 +01:00
|
|
|
A --> B & C & D
|
|
|
|
subgraph s1
|
|
|
|
B
|
|
|
|
C
|
|
|
|
end
|
|
|
|
subgraph s2
|
|
|
|
D
|
|
|
|
end
|
|
|
|
C --> D
|
|
|
|
C --> D
|
|
|
|
C --> D
|
|
|
|
</div>
|
2020-03-14 17:38:35 +01:00
|
|
|
<div class="mermaid2" style="width: 100%; height: 100%; display: none">
|
|
|
|
graph LR
|
|
|
|
a --> b
|
|
|
|
|
|
|
|
subgraph id1 [Test]
|
|
|
|
a --apa--> c
|
|
|
|
b
|
|
|
|
c-->b
|
|
|
|
b-->H
|
|
|
|
end
|
2020-03-14 08:24:45 +01:00
|
|
|
G-->H
|
2020-03-14 17:38:35 +01:00
|
|
|
G-->c
|
|
|
|
</div>
|
|
|
|
<div class="mermaid2" style="width: 100%; height: 100%">
|
|
|
|
flowchart TB
|
|
|
|
a --> b
|
|
|
|
|
|
|
|
subgraph id1 [Test]
|
|
|
|
a --apa--> c
|
|
|
|
b
|
|
|
|
c-->b
|
|
|
|
b-->H
|
|
|
|
end
|
2020-03-14 08:24:45 +01:00
|
|
|
G-->H
|
2020-03-14 17:38:35 +01:00
|
|
|
G-->id1
|
|
|
|
id1 --> I
|
|
|
|
I --> G
|
|
|
|
</div>
|
|
|
|
<div class="mermaid2" style="width: 100%; height: 100%">
|
|
|
|
flowchart RL
|
|
|
|
a --> b
|
|
|
|
|
2020-03-14 08:24:45 +01:00
|
|
|
subgraph id1 [Test]
|
2020-03-14 17:38:35 +01:00
|
|
|
a --apa--> c
|
|
|
|
b
|
|
|
|
c-->b
|
|
|
|
b-->H
|
2020-03-11 17:36:30 +01:00
|
|
|
end
|
2020-03-14 17:38:35 +01:00
|
|
|
G-->H
|
|
|
|
G-->id1
|
|
|
|
id1 --> I
|
|
|
|
I --> G
|
|
|
|
</div>
|
|
|
|
<div class="mermaid2" style="width: 100%; height: 100%">
|
|
|
|
flowchart RL
|
|
|
|
|
|
|
|
subgraph id1 [Test]
|
|
|
|
a
|
|
|
|
end
|
|
|
|
b-->id1
|
2019-12-02 21:10:37 +01:00
|
|
|
</div>
|
2020-03-14 18:13:34 +01:00
|
|
|
<div class="mermaid2" style="width: 100%; height: 100%">
|
2020-03-14 17:38:35 +01:00
|
|
|
flowchart RL
|
|
|
|
|
|
|
|
subgraph id1 [Test1]
|
|
|
|
a
|
|
|
|
end
|
|
|
|
subgraph id2 [Test2]
|
|
|
|
b
|
|
|
|
end
|
|
|
|
a --> id2
|
|
|
|
a --> b
|
|
|
|
b-->id1
|
|
|
|
id1 --> id2
|
|
|
|
</div>
|
2020-03-16 07:55:02 +01:00
|
|
|
new:
|
2020-03-14 18:13:34 +01:00
|
|
|
<div class="mermaid" style="width: 100%; height: 100%">
|
|
|
|
flowchart LR
|
2020-03-16 07:55:02 +01:00
|
|
|
a <--> b
|
|
|
|
b o--o c
|
|
|
|
c x--x d
|
|
|
|
a2 --> b2
|
|
|
|
b2 --o c2
|
|
|
|
c2 --x d2
|
|
|
|
</div>
|
|
|
|
old:
|
|
|
|
<div class="mermaid" style="width: 100%; height: 100%">
|
|
|
|
graph LR
|
|
|
|
a --> b
|
2020-03-14 18:13:34 +01:00
|
|
|
</div>
|
2020-03-14 17:38:35 +01:00
|
|
|
|
2019-12-02 21:10:37 +01:00
|
|
|
</div>
|
|
|
|
<script src="./mermaid.js"></script>
|
2019-11-27 20:15:21 +01:00
|
|
|
<script>
|
|
|
|
mermaid.initialize({
|
2020-01-29 19:57:59 +01:00
|
|
|
// theme: 'dark',
|
2019-11-27 20:15:21 +01:00
|
|
|
// arrowMarkerAbsolute: true,
|
2019-12-08 10:10:03 +01:00
|
|
|
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
|
2019-12-15 13:34:35 +01:00
|
|
|
logLevel: 0,
|
2019-12-07 12:19:45 +01:00
|
|
|
flowchart: { curve: 'linear', "htmlLabels": false },
|
2019-12-11 21:12:48 +01:00
|
|
|
// gantt: { axisFormat: '%m/%d/%Y' },
|
2020-02-16 15:26:08 +01:00
|
|
|
sequence: { actorMargin: 50, showSequenceNumbers: true },
|
2019-11-27 20:15:21 +01:00
|
|
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
2020-03-14 17:38:35 +01:00
|
|
|
fontFamily: '"arial", sans-serif',
|
|
|
|
curve: 'linear',
|
2019-11-27 20:15:21 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|