Converts HTML to Markdown.
| Branch | Status |
|---|---|
master | |
develop |
This project will currently convert the following HTML tags:-
<a><strong><b><em><i><br><code><h1><h2><h3><h4><h5><h6><blockquote><img><hr><p><pre><ul><ol>
Install-Package Html2Markdownvarhtml="Something to <strong>convert</strong>";varconverter=newConverter();varmarkdown=converter.Convert(html);varpath="file.html";varconverter=newConverter();varmarkdown=converter.ConvertFile(path);Create your own implementation of IScheme and construct Converter with that.
varhtml="Something to <strong>convert</strong>";varconverter=newConverter(customConversionScheme);varmarkdown=converter.Convert(html);This library is showcased at http://html2markdown.bayn.es.
For those interested in contributing then please read the guidelines
This project is licensed under Apache License 2.0.
