22 lines
713 B
HTML
22 lines
713 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>{{{title}}}</title>
|
||
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
|
||
|
|
{{{style}}}
|
||
|
|
{{{mermaid}}}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<script>
|
||
|
|
mermaid.initialize({
|
||
|
|
startOnLoad: true,
|
||
|
|
theme: document.body.classList.contains('vscode-dark') || document.body.classList.contains('vscode-high-contrast')
|
||
|
|
? 'dark'
|
||
|
|
: 'default'
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
{{{content}}}
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
||
|
|
<script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: {inlineMath: [['$', '$']]}, messageStyle: "none" });</script>
|