mstch/test/data/nested_higher_order_sections.hpp
2015-05-04 16:14:32 +02:00

6 lines
247 B
C++

const mstch::node nested_higher_order_sections_data = mstch::map{
{"bold", mstch::lambda{[](const std::string& text) {
return std::string{"<b>"} + text + std::string{"</b>"};
}}},
{"person", mstch::map{{"name", std::string{"Jonas"}}}}
};