有没有办法在 python 中将 Wikitext 转换为 Markdown?
是否有一个Python库可以接受wikitext(如mediawiki中使用的)输入并将其转换为markdown?
Is there a python library which takes wikitext (as used in mediawiki) input and converts it to markdown?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
由于是我需要的东西,我将两者打包在一起:
http://bitbucket.org/wikier/mw2md
因此,现在执行这两项任务变得更加容易。
Since is something that I need, I packaged both together:
http://bitbucket.org/wikier/mw2md
So now it's easier to perform both tasks.
您可以从 wikitext 到 html 然后从 html 到 markdown。不完全是直截了当的,但我不知道有什么选择。
You can go from wikitext to html and then go from html to markdown. Not exactly straight forward, but i know no alternatives.
不确定它是否满足您的要求,但您可能想查看 Pyandoc:Pandoc。
Not sure it does what you want, but you might want to check out Pyandoc: a Python wrapper for Pandoc.
您可以使用 pandoc 来实现此目的。尝试在线转换器。
You can use pandoc for this. Try online converter.
您可以使用带有以下语法的 pandoc 从 mediwiki 转换为 Markdown。
这将在控制台上输出,但如果您想将其保存在文件中,请按如下所示进行更改。
You can use pandoc with following syntax to convert from mediwiki to markdown.
this will output on console but if you want to save it in a file then change as below.
这是一个仍然有效的解决方案:使用 Pandoc 的 Python 库。
pypandoc
This is a still working solution: a Python Library that uses Pandoc.
pypandoc