MarkdownSharp 是否允许反向翻译(HTML 到 Markdown)?
标题是不言自明的。 我想将我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不认为 markdownsharp 可以做到这一点,但 Pandoc 肯定可以。
将 Html 或 RTF 转换为 Markdown 或 Wiki 兼容语法?< /a> 告诉您如何在 C# 中包装 Pandoc。
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#.
如果您正在寻找本机 C# 实现,我已经创建了一个库 Html2Markdown。使用方法非常简单。
其中
html
是您要转换的 HTML 的字符串表示形式。我积极支持并乐意接受贡献。If you are looking for a native C# implementation I have created a library Html2Markdown. Usage is very simple.
Where
html
is the string representation of the HTML you wish to convert. I actively support it and happily accept contributions.