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

5 lines
190 B
C++

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