Render pre tags to support admonitions

This commit is contained in:
Ole Eskild Steensen 2022-03-15 16:02:41 +01:00 committed by GitHub
parent 51edb4b55c
commit aadc872137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,9 +11,12 @@
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script> <script>
MathJax = { MathJax = {
tex: { tex: {
inlineMath: [["$", "$"]] inlineMath: [["$", "$"]]
},
options: {
skipHtmlTags: {'[-]': ['pre']}
} }
}; };
</script> </script>