Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to convert HTML into Markdown?

I am using C# and the he amount of text being converted would be less than 300 characters or so.

I think:

share|improve this question
unless it is very specific html, it will be very hard to convert it to markdown, as long as markdown is much more restricted than html. If it is very specific, I would go XSLT or HtmlAgility pack way. If you could give your html samples/purpose, I think you would get better answers. – Giedrius Aug 27 '12 at 7:19

1 Answer

Pandoc seems to be a good solution.

This Stackoverflow post Convert Html or RTF to Markdown or Wiki Compatible syntax? explain how to wrap Pandoc in C#

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.