HTML2Markdown
Converts HTML to Markdown syntax.
HTML2Markdown

Converts HTML to Markdown.

Html2Markdown

Documentation

Fully navigable documentation available on GitHub Pages

Support

This project will currently convert the following HTML tags:-

Installing via NuGet

Install-Package Html2Markdown

Usage

Strings

var html = "Something to <strong>convert</strong>";
var converter = new Converter();
var markdown = converter.Convert(html);

Files

var path = "file.html";
var converter = new Converter();
var markdown = converter.ConvertFile(path);

Try it

This library is showcased at http://html2markdown.bayn.es.

Contributing

For those interested in contributing then please read the guidelines

License

This project is licensed under Apache License 2.0.