Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 的 Markdown-Latex 包的版本很少,但我无法使用当前版本的 Markdown 包。有没有人有一个使用 python 的工作示例,例如:
lines = markdown.markdown(lines,extensions=[MarkdownLatex()]
谢谢!
您可以将扩展名的文件重命名为“mdx_latex.py”,然后在同一目录中运行以下命令:
import markdown md = markdown.Markdown(extensions=['latex']) out = md.convert(text)