How to convert HTML to MarkDown in C #?

What is the best way to convert HTML to Markdown?

I use C # and the amount of convertible text will be less than 300 characters.

I think:

+5
source share
1 answer

Pandoc seems like a good solution.

This Stackoverflow post Converts Html or RTF to Markdown or Wiki Compatible Syntax? explain how to wrap pandoc in c #

+3
source

All Articles