From 5d69a09fd788b16d01e3b53f134f084aab0c15c7 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Mon, 25 Apr 2016 23:53:58 +0200 Subject: [PATCH] Fix quoting issue in example (#15589) --- docsite/rst/playbooks_advanced_syntax.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_advanced_syntax.rst b/docsite/rst/playbooks_advanced_syntax.rst index 930f9239527..627eba16668 100644 --- a/docsite/rst/playbooks_advanced_syntax.rst +++ b/docsite/rst/playbooks_advanced_syntax.rst @@ -24,7 +24,7 @@ Jinja2 contains functionality for escaping, or telling Jinja2 to not template da Using YAML tags, you can also mark a value as "unsafe" by using the ``!unsafe`` tag such as:: --- - my_unsafe_variable: !unsafe 'this variable has {{ characters that shouldn't be treated as a jinja2 template' + my_unsafe_variable: !unsafe 'this variable has {{ characters that should not be treated as a jinja2 template' In a playbook, this may look like::