有没有办法在 python 中将 Wikitext 转换为 Markdown?

发布于 2024-10-17 06:55:31 字数 64 浏览 1 评论 0原文

是否有一个Python库可以接受wikitext(如mediawiki中使用的)输入并将其转换为markdown?

Is there a python library which takes wikitext (as used in mediawiki) input and converts it to markdown?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

寄与心 2024-10-24 06:55:31

由于是我需要的东西,我将两者打包在一起:

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.

冰魂雪魄 2024-10-24 06:55:31

您可以从 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.

浮世清欢 2024-10-24 06:55:31

不确定它是否满足您的要求,但您可能想查看 PyandocPandoc

Not sure it does what you want, but you might want to check out Pyandoc: a Python wrapper for Pandoc.

善良天后 2024-10-24 06:55:31

您可以使用 pandoc 来实现此目的。尝试在线转换器

You can use pandoc for this. Try online converter.

最近可好 2024-10-24 06:55:31

您可以使用带有以下语法的 pandoc 从 mediwiki 转换为 Markdown。

 pandoc -f mediawiki -t markdown wiki.txt

这将在控制台上输出,但如果您想将其保存在文件中,请按如下所示进行更改。

pandoc --from mediawiki --to markdown wiki.txt  -o youwant.md

You can use pandoc with following syntax to convert from mediwiki to markdown.

 pandoc -f mediawiki -t markdown wiki.txt

this will output on console but if you want to save it in a file then change as below.

pandoc --from mediawiki --to markdown wiki.txt  -o youwant.md
动听の歌 2024-10-24 06:55:31

这是一个仍然有效的解决方案:使用 Pandoc 的 Python 库。

pypandoc

This is a still working solution: a Python Library that uses Pandoc.

pypandoc

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文