Files
mermaid/cypress/platform/e2e.html
2019-10-12 09:16:33 +02:00

22 lines
488 B
HTML

<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>