Shortened javascript which loads MathJax so that it is easier to compare for removal (since we unfortunately cannot set its ID).

This commit is contained in:
Georges Dupéron 2017-07-21 13:06:28 +02:00
parent a762046efa
commit 5ffa56c7e5

View File

@ -100,26 +100,26 @@ EOJS
(define (load-script-string src [async-defer #f])
(string-append
#<<EOJS
(function() {
document.write('<scr' + 'ipt type="text/javascript" src="
(function() {document.write('<scr' + 'ipt type="text/javascript" src="
EOJS
src
"\""
(if async-defer " async=\"async\" defer=\"defer\" " "")
#<<EOJS
></scr' + 'ipt>');
})();
></scr' + 'ipt>');})();
EOJS
))
(define (load-style-string src)
(string-append
#<<EOJS
(function() {document.write('<link rel="stylesheet" href="
(function() {
document.write('<link rel="stylesheet" href="
EOJS
src
#<<EOJS
" />');})();
" />');
})();
EOJS
))