- Mustache implementation for modern C++ (requires C++11)
- Header only
- Zero dependencies
- Templated string type for compatibility with any STL-like string (std::string, std::wstring, etc)
- Boost license
All examples assume using namespace kainjow::mustache. Additional examples and usage can be found in the tests.cpp file.
mustache tmpl{"Hello {{what}}!"}; std::cout << tmpl.render({"what", "World"}) << std::endl; // Hello World!mustache tmpl{"{{#employees}}{{name}}, {{/employees}}"}; data employees{data::type::list}; employees << data{"name", "Steve"} << data{"name", "Bill"}; tmpl.render({"employees", employees}, std::cout); // Steve, Bill,mustache tmpl("Hello {{what}}!"); std::stringstream ss; tmpl.render({"what", "World"}, [&ss](const std::string& str) { ss << str; }); // ss.str() == "Hello World!"This library supports all current Mustache features:
- Variables
- HTML escaping
- Sections
- Inverted Sections
- True/False
- Lists
- Lambdas
- Partials
- Comments
- Set Delimiter
Additional features:
- Custom escape function for use outside of HTML