summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/templating/README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/templating/README.md b/docs/templating/README.md
index 963f921..bf8d265 100644
--- a/docs/templating/README.md
+++ b/docs/templating/README.md
@@ -87,3 +87,13 @@ Current version is {{ softwareVersion }}.
##### include and block
Inclusion and inheritance is detailled in the [Content References](conrefs.md) section.
+
+### Escaping
+
+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
+{% raw %}
+ this will {{ not be processed }}
+{% endraw %}
+```