You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
713 B
22 lines
713 B
<!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> |