
Write HTML using C++ templates
HTML++ is a library that allows you to write HTML using C++ templates. It represents the HTML document as a single, deeply-nested type which is type-checked by the compiler. If compilation succeeds, you will have a program that prints a properly-indented HTML document to the standard output when run.
HTML++ is a library that allows you to write HTML using C++ templates. It leverages C++20 features, such as string literals as non-type template parameters, to closely imitate the structure and syntax of HTML tags. The library provides type-checking of the HTML structure using templates and allows for easy installation by including a single "html++.h" file.
