在 Go 中将 C 和 Python 代码串在一起?

发布于 2024-11-09 12:12:23 字数 1083 浏览 6 评论 0原文

更新


我正在尝试创建一个简单的 Go 函数,该函数只需在 reddit 风格的 Markdown 字符串中并返回适当的 HTML。

现在,我知道安装 Discount 是先决条件,并且reddit 至少使用以下三个文件作为 Discount 的包装器:

基于此,有谁知道我如何将所有这些与 Cgo 和 go-python 创建一个简单的 Markdown 函数? (独立于 Reddit 源代码的其余部分)

Update


I'm trying to create a simple Go function which will simply take in a string of reddit-style Markdown and return the appropriate HTML.

Right now, I know that having Discount installed is a prerequisite and that at least the following three files are used by reddit as wrappers around Discount:

Based on this, does anyone know how I can sort of glue all this together with Cgo and go-python to create a simple Markdown function? (independent of the rest of the reddit source code)

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

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

发布评论

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

评论(1

著墨染雨君画夕 2024-11-16 12:12:23

如果你想要的只是 Markdown,我不明白 Python 如何适应这个。也许还有更多内容,但如果可能的话,您应该将 Python 排除在外。如果问题中没有提到使用 Python 的原因,我可以编辑这个答案并解决这个问题。

首先,尝试这个原生 Go Markdown 包: https://github.com/knieriem/markdown

如果没有不起作用,下一个最简单的方法是采用 Discount (或任何其他用 C 编写的 Markdown 库,例如 GitHub 的 Upskirt fork )并用 cgo 或 SWIG 包装它。

If all you want is Markdown, I don't see how Python fits into this. Maybe there's more to it, but if at all possible you should leave Python out of this. If there's a reason to use Python that wasn't in the question, I can edit this answer and address that.

First, try this native Go Markdown package: https://github.com/knieriem/markdown

If that doesn't work, the next easiest thing is to take Discount (or any other Markdown library written in C, such as GitHub's Upskirt fork) and wrap it with cgo or SWIG.

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