partials documentation

This commit is contained in:
Daniel Sipka 2015-04-24 15:20:49 +02:00
parent a478af2a27
commit a8afdcef90

View File

@ -73,7 +73,30 @@ if your compiler supports it.
### Partials ### Partials
TODO Partials can be passed in a `std::map` as the third parameter of the
`mstch::render` function:
```c++
std::string view{"{{#names}}{{> user}}{{/names}}"};
std::string user_view{"<strong>{{name}}\n</strong>"};
mstch::map context{
{"names", mstch::array{
mstch::map{{"name", std::string{"Chris"}}},
mstch::map{{"name", std::string{"Mark"}}},
mstch::map{{"name", std::string{"Scott"}}},
}}
};
std::cout << mstch::render(view, context, {{"user", user_view}}) << std::endl;
```
The output will be:
```
<strong>Chris</strong>
<strong>Mark</strong>
<strong>Scott</strong>
```
### Lambdas ### Lambdas