2019-11-27 20:15:21 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
2019-12-08 10:10:03 +01:00
|
|
|
<style>
|
2019-12-15 13:34:35 +01:00
|
|
|
body {background: black}
|
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;}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
2019-11-27 20:15:21 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>info below</h1>
|
2019-12-11 21:12:48 +01:00
|
|
|
<div style="display: flex;width: 100%; height: 100%">
|
2019-12-15 13:34:35 +01:00
|
|
|
<div class="mermaid" style="width: 100%; height: 100%">
|
|
|
|
graph TB
|
|
|
|
A --> B
|
|
|
|
A ==> C
|
|
|
|
A .-> D
|
|
|
|
A === E
|
|
|
|
A -.- F
|
|
|
|
D -- Hello --> a
|
|
|
|
D-- text including R TD space --xb
|
2019-12-02 21:10:37 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="./mermaid.js"></script>
|
2019-11-27 20:15:21 +01:00
|
|
|
<script>
|
|
|
|
mermaid.initialize({
|
2019-12-15 13:34:35 +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' },
|
2019-11-27 20:15:21 +01:00
|
|
|
sequence: { actorMargin: 50 },
|
|
|
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|