Does MarkdownSharp allow inverse translation (HTML to Markdown)?

493 Views Asked by At

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

2

There are 2 best solutions below

0
On BEST ANSWER

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#.

0
On

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.