22 lines
488 B
HTML
Raw Normal View History

<html>
<head>
<script src="/e2e.js"></script>
<style>
mermaid, svg {
font-family: 'Courier New', Courier, monospace;
}
</style>
</head>
<body>
<script src="./mermaid.js"></script>
<script>
// Notice startOnLoad=false
// This prevents default handling in mermaid from render before the e2e logic is applied
mermaid.initialize({
startOnLoad: false,
useMaxWidth: true,
});
</script>
</body>
</html>