summaryrefslogtreecommitdiffstats
path: root/docsite
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansibleworks.com>2013-12-26 20:33:25 +0100
committerMichael DeHaan <michael@ansibleworks.com>2013-12-26 20:35:57 +0100
commitbde41bac359313207dadcc480a8fafb7261f465f (patch)
tree65e29d4d64eebfae8b4a710f09ad6454bab3d602 /docsite
parentAdd contents to various pages with more than one topic per page. (diff)
downloadansible-bde41bac359313207dadcc480a8fafb7261f465f.tar.xz
ansible-bde41bac359313207dadcc480a8fafb7261f465f.zip
Fix some small docsite formatting things.
Diffstat (limited to 'docsite')
-rw-r--r--docsite/rst/playbooks_variables.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst
index 9d25a95873..127c0bc300 100644
--- a/docsite/rst/playbooks_variables.rst
+++ b/docsite/rst/playbooks_variables.rst
@@ -67,7 +67,7 @@ This can be nice as it's right there when you are reading the playbook.
.. _included_variables:
Variables defined from included files and roles
------------------------------------------------
+```````````````````````````````````````````````
It turns out we've already talked about variables in another place too.
@@ -85,13 +85,13 @@ Ansible allows you to
reference variables in your playbooks using the Jinja2 templating system. While you can do a lot of complex
things in Jinja, only the basics are things you really need to learn at first.
-For instance, in a simple template, you can do something like
+For instance, in a simple template, you can do something like::
My amp goes to {{ max_amp_value }}
And that will provide the most basic form of variable substitution.
-This is also valid directly in playbooks, and you'll occasionally want to do things like:
+This is also valid directly in playbooks, and you'll occasionally want to do things like::
template: src=foo.cfg.j2 dest={{ remote_install_path}}/foo.cfg