从 wiki 转换为 html

发布于 2024-08-22 17:27:25 字数 81 浏览 10 评论 0原文

我正在使用维基百科 api 从维基百科获取信息。 有什么办法可以将 wiki 文本转换为 html 吗?

我尝试过介质布,但效果不佳

I'm using a wikipedia api for getting info from wikipedia.
Is there anything for convert wiki text in html?

I've tried mediacloth but i doesn't works well

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

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

发布评论

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

评论(3

允世 2024-08-29 17:27:25

查看标记

>> require 'marker'
>> m = Marker.parse "== heading ==\nparagraph with '''bold''' text"
>> puts m.to_html
<h2>heading</h2>
<p>paragraph with <b>bold</b> text</p>

Take a look at marker.

>> require 'marker'
>> m = Marker.parse "== heading ==\nparagraph with '''bold''' text"
>> puts m.to_html
<h2>heading</h2>
<p>paragraph with <b>bold</b> text</p>
终止放荡 2024-08-29 17:27:25

还可以尝试 wikicloth http://code.google.com/p/wikicloth/ 它实现有些东西别人没有,比如桌子。

Try also wikicloth http://code.google.com/p/wikicloth/ it implements some things that others haven't like tables.

伊面 2024-08-29 17:27:25

您可以下载维基百科的静态 HTML 转储

You could download a static HTML dump of Wikipedia.

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