diff options
author | Soreine <soreine.plume@gmail.com> | 2016-03-21 15:07:22 +0100 |
---|---|---|
committer | Soreine <soreine.plume@gmail.com> | 2016-03-21 15:07:22 +0100 |
commit | fa5bee6ca374108ba806442cc7f7c422df8811c4 (patch) | |
tree | 65d8de9b5116adb356316be558883ded57ad1b9e | |
parent | 3a43ef2c3fb60e0920188200c796a0db6ce4ed3f (diff) | |
download | gitbook-fa5bee6ca374108ba806442cc7f7c422df8811c4.zip gitbook-fa5bee6ca374108ba806442cc7f7c422df8811c4.tar.gz gitbook-fa5bee6ca374108ba806442cc7f7c422df8811c4.tar.bz2 |
Import paragraph about Escaping nunchuck from old doc.
-rw-r--r-- | docs/templating/README.md | 10 |
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 %} +``` |