Commit 90d902d1 by Vik Paruchuri

Fix file version

parent 1af35582
...@@ -249,7 +249,10 @@ class @DiscussionUtil ...@@ -249,7 +249,10 @@ class @DiscussionUtil
$3 $3
else if RE_DISPLAYMATH.test(text) else if RE_DISPLAYMATH.test(text)
text = text.replace RE_DISPLAYMATH, ($0, $1, $2, $3) -> text = text.replace RE_DISPLAYMATH, ($0, $1, $2, $3) ->
processedText += $1 + processor("$$" + $2 + "$$", 'display') #processedText += $1 + processor("$$" + $2 + "$$", 'display')
#bug fix, ordering is off
processedText = processor("$$" + $2 + "$$", 'display') + processedText
processedText = $1 + processedText
$3 $3
else else
processedText += text processedText += text
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment