如何使用wiky.js将wikitext的<math>标记解析为html?

时间:2016-07-16 11:12:13

标签: javascript html regex math

我需要使用wiky.js<math>标记解析为$,将<math display ="block">解析为$$。这个javascript主要使用正则表达式来做到这一点。

例如:

<math> x^2 + 1 = 0 </math>变为:$ x^2 + 1 = 0 $.

<math display="block"> x^2 + 1 = 0 </math>变为:$$ x^2 + 1 = 0 $$

1 个答案:

答案 0 :(得分:0)

{ rex:/<math>(.*?)<\/math>/mgi, tmplt:"$$$1$$" }
{ rex:/<math *display *= *"?block"?>(.*?)<\/math>/mgi, tmplt:"$$$$$1$$$$" }