fix(katex): removed extra body tag from merge

This commit is contained in:
NicolasNewman
2023-02-13 15:29:32 -06:00
parent 2740edfc2b
commit fb5d80a7a1

View File

@@ -1,6 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
@@ -13,7 +12,6 @@
} }
</style> </style>
</head> </head>
<body> <body>
<h1>Comparison "graph vs. flowchart"</h1> <h1>Comparison "graph vs. flowchart"</h1>
<h2>Sample 1</h2> <h2>Sample 1</h2>
@@ -1095,6 +1093,7 @@
style N2 stroke:#0000ff,fill:#ccccff,color:#0000ff style N2 stroke:#0000ff,fill:#ccccff,color:#0000ff
style O2 stroke:#0000ff,fill:#ccccff,color:#0000ff style O2 stroke:#0000ff,fill:#ccccff,color:#0000ff
</pre> </pre>
<hr />
<h2>Sample 20</h2> <h2>Sample 20</h2>
<h3>graph</h3> <h3>graph</h3>
@@ -1107,7 +1106,6 @@
</pre> </pre>
<hr /> <hr />
<h3>flowchart</h3> <h3>flowchart</h3>
<pre class="mermaid"> <pre class="mermaid">
flowchart LR flowchart LR
@@ -1126,7 +1124,6 @@
</pre> </pre>
<hr /> <hr />
<h3>flowchart</h3> <h3>flowchart</h3>
<pre class="mermaid"> <pre class="mermaid">
graph LR graph LR
@@ -1142,7 +1139,6 @@
</pre> </pre>
<hr /> <hr />
<h3>flowchart</h3> <h3>flowchart</h3>
<pre class="mermaid"> <pre class="mermaid">
graph LR graph LR
@@ -1150,33 +1146,6 @@
</pre> </pre>
<hr /> <hr />
<h1 id="link-clicked">Anchor for "link-clicked" test</h1>
<script src="./mermaid.js"></script>
<script>
mermaid.initialize({
theme: 'forest',
logLevel: 3,
securityLevel: 'loose',
flowchart: { curve: 'basis' },
});
</script>
<script>
function testClick(nodeId) {
console.log('clicked', nodeId);
var originalBgColor = document.querySelector('body').style.backgroundColor;
document.querySelector('body').style.backgroundColor = 'yellow';
setTimeout(function () {
document.querySelector('body').style.backgroundColor = originalBgColor;
}, 100);
}
</script>
</body>
</pre>
<hr />
<hr /> <hr />
<pre class="mermaid"> <pre class="mermaid">
@@ -1609,5 +1578,4 @@
} }
</script> </script>
</body> </body>
</html> </html>