diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 4e5c124..6b02571 100644
a
|
b
|
If ``value`` is ``Joel is a slug``, the output would be::
|
2285 | 2285 | yesno |
2286 | 2286 | ^^^^^ |
2287 | 2287 | |
2288 | | Given a string mapping values for true, false and (optionally) None, |
| 2288 | Maps values for true, false and (optionally) None, to the strings "yes", "no", |
| 2289 | "maybe", or a custom mapping passed as a comma-separated list, and |
2289 | 2290 | returns one of those strings according to the value: |
2290 | 2291 | |
2291 | 2292 | For example:: |
… |
… |
For example::
|
2295 | 2296 | ========== ====================== ================================== |
2296 | 2297 | Value Argument Outputs |
2297 | 2298 | ========== ====================== ================================== |
| 2299 | ``True`` ``yes`` |
2298 | 2300 | ``True`` ``"yeah,no,maybe"`` ``yeah`` |
2299 | 2301 | ``False`` ``"yeah,no,maybe"`` ``no`` |
2300 | 2302 | ``None`` ``"yeah,no,maybe"`` ``maybe`` |