/html2md

C++ single header library for HTML to Markdown conversion

Primary LanguageC++MIT LicenseMIT

Build Status CodeFactor GitHub license

html2md

Table of Contents

What does it do?

html2md is a rudimentary solution for HTML to Markdown conversion, implemented as a C++ single header.

Also the project is a good example for efficient abstraction of logical decision trees via strategy pattern.

Usage Example

#include <html2md.hpp>

//...

std::cout << html2md::Convert(html);

See the included example.cpp

Code Convention

The source code of the html2md header follows the Google C++ Style Guide.

License

html2md is licensed under The MIT License (MIT)