作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个脚本,可以将 \\[
或 \\]
等内容转换为 $$
以便转换MultiMarkdown 文档到 Pandoc markdown 文档,可以在 HTML 中显示方程式。我正在使用 Python 使用
matchstring=r'\\['
re.sub(matchstring,'$$',content)
但是我遇到了以下错误:
unexpected end of regular expression:line 15:matchstring=re.compile(r'\\[')
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 190:
return _compile(pattern, flags)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 245:
raise error, v # invalid expression
很可能是因为我在那里的最后一个[
。有谁知道解决这个问题的方法吗?
最佳答案
pandoc -f markdown_mmd -t markdown
将为您做到这一点! (对于 pandoc >= 1.11)
关于python - 替换Python中的双反斜杠和括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15554687/
我是一名优秀的程序员,十分优秀!