MarkdownSharp 是否允许反向翻译(HTML 到 Markdown)?

发布于 2024-11-17 17:56:00 字数 171 浏览 3 评论 0原文

标题是不言自明的。 我想将我的 Markdown 翻译成 HTML,但相反的方向也应该是可能的。 如何使用 MarkdownSharp 实现这一点?

如果不支持双向,您建议我使用什么工具来代替具有这些功能的 MarkdownSharp

谢谢

The title is self-explaining.
I would like to translate my Markdown into HTML but also the inverse direction should be possible.
How to achieve this using MarkdownSharp?

In case there is no support for bidirection, what tool do you suggest me to use in repace of MarkdownSharp having these features?

Thankyou

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

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

发布评论

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

评论(2

陪你搞怪i 2024-11-24 17:56:00

I don't think markdownsharp can do it, but Pandoc certainly does.

Convert Html or RTF to Markdown or Wiki Compatible syntax? tells you how to wrap Pandoc in C#.

浮华 2024-11-24 17:56:00

如果您正在寻找本机 C# 实现,我已经创建了一个库 Html2Markdown。使用方法非常简单。

var markdown = new Converter().Convert(html);

其中 html 是您要转换的 HTML 的字符串表示形式。我积极支持并乐意接受贡献。

If you are looking for a native C# implementation I have created a library Html2Markdown. Usage is very simple.

var markdown = new Converter().Convert(html);

Where html is the string representation of the HTML you wish to convert. I actively support it and happily accept contributions.

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