Fix whitespace in highlight JS
This commit is contained in:
parent
a54f5fc9d8
commit
246a6dc554
1 changed files with 27 additions and 25 deletions
|
@ -8,11 +8,14 @@
|
||||||
if (x.length > 0) {
|
if (x.length > 0) {
|
||||||
// We have blocks to be highlighted, so we load css + js
|
// We have blocks to be highlighted, so we load css + js
|
||||||
var st = document.createElement('link');
|
var st = document.createElement('link');
|
||||||
st.rel="stylesheet"; st.href=hlbaseUri + "styles/atom-one-light.min.css";
|
st.rel = "stylesheet";
|
||||||
|
st.href = hlbaseUri + "styles/atom-one-light.min.css";
|
||||||
document.getElementsByTagName('head')[0].appendChild(st);
|
document.getElementsByTagName('head')[0].appendChild(st);
|
||||||
|
|
||||||
var sc = document.createElement('script');
|
var sc = document.createElement('script');
|
||||||
sc.type="text/javascript"; sc.src=hlbaseUri + "highlight.min.js"; sc.async=true;
|
sc.type = "text/javascript";
|
||||||
|
sc.src = hlbaseUri + "highlight.min.js";
|
||||||
|
sc.async = true;
|
||||||
|
|
||||||
// Here's the crux, we need to react on load event for this new element to make it work.
|
// Here's the crux, we need to react on load event for this new element to make it work.
|
||||||
sc.onload = () => { highlight(x) }
|
sc.onload = () => { highlight(x) }
|
||||||
|
@ -43,6 +46,5 @@
|
||||||
"HTML-CSS": { fonts: ["TeX"] }
|
"HTML-CSS": { fonts: ["TeX"] }
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript"
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
|
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue