summaryrefslogtreecommitdiffstats
path: root/docs/templating/README.md
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2016-12-22 10:17:28 +0100
committerSamy Pessé <samypesse@gmail.com>2016-12-22 10:17:28 +0100
commit16af264360e48e8a833e9efa9ab8d194574dbc70 (patch)
treec50988f32ccf18df93ae7ab40be78e9459642818 /docs/templating/README.md
parentfebdd8a8bd26466509d03fe2d95aff97e7631c2f (diff)
parent64ccb6b00b4b63fa0e516d4e35351275b34f8c07 (diff)
downloadgitbook-16af264360e48e8a833e9efa9ab8d194574dbc70.zip
gitbook-16af264360e48e8a833e9efa9ab8d194574dbc70.tar.gz
gitbook-16af264360e48e8a833e9efa9ab8d194574dbc70.tar.bz2
Merge branch 'master' into dream
Diffstat (limited to 'docs/templating/README.md')
-rw-r--r--docs/templating/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/templating/README.md b/docs/templating/README.md
index bf8d265..ae4ec8f 100644
--- a/docs/templating/README.md
+++ b/docs/templating/README.md
@@ -21,7 +21,7 @@ This looks up username from the context and displays it. Variable names can have
If a value is undefined, nothing is displayed. The following all output nothing if foo is undefined: `{{ foo }}`, `{{ foo.bar }}`, `{{ foo.bar.baz }}`.
-GitBook provides a set of [predefined variables](variables.md) from the context.
+GitBook provides a set of [predefined variables](variables.md) from the context.
### Filters
@@ -92,7 +92,7 @@ Inclusion and inheritance is detailled in the [Content References](conrefs.md) s
If you want GitBook to ignore any of the special templating tags, you can use raw and anything inside of it will be output as plain text.
-``` twig
+```twig
{% raw %}
this will {{ not be processed }}
{% endraw %}