From fa5bee6ca374108ba806442cc7f7c422df8811c4 Mon Sep 17 00:00:00 2001 From: Soreine Date: Mon, 21 Mar 2016 15:07:22 +0100 Subject: [PATCH] Import paragraph about Escaping nunchuck from old doc. --- docs/templating/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/templating/README.md b/docs/templating/README.md index 963f92143..bf8d2657a 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 %} +```