From 49f3a794b1572eebafc79745a7e9e08e93bcefc4 Mon Sep 17 00:00:00 2001 From: Chris Hepner Date: Wed, 25 Jun 2014 10:19:46 -0700 Subject: [PATCH] Fix missing code block in playbook variables doc A code sample was not being rendered as a code block. This adds the preceding '::' reStructuredText markup. --- docsite/rst/playbooks_variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst index 1b0ed5da372..f277b1b2a09 100644 --- a/docsite/rst/playbooks_variables.rst +++ b/docsite/rst/playbooks_variables.rst @@ -173,7 +173,7 @@ The variable value will be used as is, but the template evaluation will raise an Defaulting Undefined Variables ------------------------------ -Jinja2 provides a useful 'default' filter, that is often a better approach to failing if a variable is not defined. +Jinja2 provides a useful 'default' filter, that is often a better approach to failing if a variable is not defined:: {{ some_variable | default(5) }}