mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* Defer non-critical resources and use more sensible CDN provider * Seems like defer doesn't work for css * Delete vscode related files * Remove comments from as per code review Co-authored-by: Luiz F. A. de Prá <luizdepra@users.noreply.github.com> Co-authored-by: Luiz F. A. de Prá <luizdepra@users.noreply.github.com>
39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
{{- if or (.Params.math) (.Site.Params.math) -}}
|
|
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
{{/* The file is already minified */}}
|
|
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
|
<script>
|
|
MathJax = {
|
|
tex: {
|
|
inlineMath: [
|
|
['$', '$'], ['\\(', '\\)']
|
|
],
|
|
processEscapes: true,
|
|
processEnvironments: true
|
|
},
|
|
options: {
|
|
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre']
|
|
}
|
|
};
|
|
</script>
|
|
{{- end -}}
|
|
{{- if or (.Params.katex) (.Site.Params.katex) -}}
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css"
|
|
integrity="sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X" crossorigin="anonymous">
|
|
{{/* The loading of KaTeX is deferred to speed up page rendering */}}
|
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js"
|
|
integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4" crossorigin="anonymous"></script>
|
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js"
|
|
integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous"
|
|
onload="renderMathInElement(document.body,
|
|
{
|
|
delimiters: [
|
|
{left: '$$', right: '$$', display:true},
|
|
{left: '$', right: '$', display:false},
|
|
{left: '\\(', right: '\\)', display: false},
|
|
{left: '\\[', right: '\\]', display: true}
|
|
]
|
|
}
|
|
);"></script>
|
|
{{- end -}}
|