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.
44 lines
1.2 KiB
44 lines
1.2 KiB
<!doctype html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<link rel="icon" href="%sveltekit.assets%/favicon.png?v=2" /> |
|
<meta name="viewport" content="width=device-width" /> |
|
|
|
<!-- MathJax for math rendering --> |
|
<script> |
|
window.MathJax = { |
|
tex: { |
|
inlineMath: [ |
|
["$", "$"], |
|
["\\(", "\\)"], |
|
], |
|
displayMath: [ |
|
["$$", "$$"], |
|
["\\[", "\\]"], |
|
], |
|
processEscapes: true, |
|
processEnvironments: true, |
|
}, |
|
options: { |
|
ignoreHtmlClass: "tex2jax_ignore", |
|
processHtmlClass: "tex2jax_process", |
|
}, |
|
}; |
|
</script> |
|
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> |
|
|
|
<!-- highlight.js for code highlighting --> |
|
<link |
|
rel="stylesheet" |
|
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css" |
|
/> |
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> |
|
|
|
%sveltekit.head% |
|
</head> |
|
|
|
<body data-sveltekit-preload-data="hover"> |
|
<div style="display: contents">%sveltekit.body%</div> |
|
</body> |
|
</html>
|
|
|