2015-04-23 21:55:18 +08:00
|
|
|
const mstch::node section_functions_in_partials_data = mstch::map{
|
2015-05-05 20:15:47 +08:00
|
|
|
{"bold", mstch::lambda{[](const std::string& text) -> mstch::node {
|
2015-05-04 22:14:32 +08:00
|
|
|
return std::string{"<b>"} + text + std::string{"</b>"};
|
2015-04-23 21:55:18 +08:00
|
|
|
}}}
|
|
|
|
};
|