# HG changeset patch # User Ludovic Chabant # Date 1425276361 28800 # Node ID a8cf2ed9d3af07a24ea25046eafd8926f11b4fa5 # Parent e71ed81d497bea1d90989ee7708219e373a1cf43 docs: Properly escape examples with Jinja markup. diff -r e71ed81d497b -r a8cf2ed9d3af docs/docs/02_general/04_how-it-works.md --- a/docs/docs/02_general/04_how-it-works.md Sun Mar 01 21:57:57 2015 -0800 +++ b/docs/docs/02_general/04_how-it-works.md Sun Mar 01 22:06:01 2015 -0800 @@ -78,12 +78,14 @@ example page is using the `simple` layout, and if we assume the file `templates/simple.html` looks like this: + {%raw%} {{page.title}} - {{content|raw}} + {{content|safe}} + {%endraw%} ...then our final page will be: