We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 109d988 commit c43f978Copy full SHA for c43f978
1 file changed
public/vendor/markdown-it-mathjax.js
@@ -8,6 +8,9 @@
8
}
9
})(this, function() {
10
function math(state, silent) {
11
+ if (state.md.meta.mathjax === false) {
12
+ return false
13
+ }
14
var startMathPos = state.pos
15
if (state.src.charCodeAt(startMathPos) !== 0x5C /* \ */) {
16
return false
@@ -47,6 +50,9 @@
47
50
48
51
49
52
function texMath(state, silent) {
53
54
55
56
57
if (state.src.charCodeAt(startMathPos) !== 0x24 /* $ */) {
58
0 commit comments