Files
docutranslate/docutranslate/template/markdown.html
2025-08-22 14:19:11 +08:00

31 lines
463 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
{{pico}}
{{katexCss}}
{{katexJs}}
{{autoRender}}
<style>
html {
padding: 2vh 10vw;
font-size: 15px;
}
</style>
</head>
<body>
{{markdown}}
</body>
{{renderMathInElement}}
{{mermaid}}
<script>
mermaid.initialize({
securityLevel: 'loose',
startOnLoad: true
});
</script>
</html>