summaryrefslogtreecommitdiff
path: root/docs/templates
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2018-04-18 13:04:47 -0700
committerGitHub <noreply@github.com>2018-04-18 13:04:47 -0700
commita08459a8147ec89ec1e0eb3e65d1d53a79723095 (patch)
tree5b43503822c6bfae0bb53d3ff6980f5b0f387901 /docs/templates
parentc1ae1c82515d3f773da49184ea0a7d61e3a533e5 (diff)
downloadansible-a08459a8147ec89ec1e0eb3e65d1d53a79723095.tar.gz
Update info on python support (#38855)
* Update the documentation to list Python 3 as official * Add some reference targets for inventory variables so we can link to docs * Add a platform FAQ section Populate it with * virtualenv info (previously on the python3 support page) * BSD (Link to the working with BSD page) * Solaris (Document how to work around the non-POSIX shell on some Solaris hosts) Fixes #21594 * Fix some refs in the release_and_maintenance document * Fix unindent error in module template Fix for the module/plugin template unintentionally unindented inside of a raw block, leading to errors like: ERROR: docs/docsite/rst/modules/redshift_facts_module.rst:289:0: Explicit markup ends without a blank line; unexpected unindent. * Make wording for Solaris troubleshooting better.
Diffstat (limited to 'docs/templates')
-rw-r--r--docs/templates/plugin.rst.j26
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/templates/plugin.rst.j2 b/docs/templates/plugin.rst.j2
index 1936e896a5..10651ffd27 100644
--- a/docs/templates/plugin.rst.j2
+++ b/docs/templates/plugin.rst.j2
@@ -261,10 +261,12 @@ Facts returned by this module are added/updated in the ``hostvars`` host facts a
<td>
<div class="cell-border">
{% if value.description is string %}
- <div>@{ value.description | html_ify }@</div>
+ <div>@{ value.description | html_ify }@
+ </div>
{% else %}
{% for desc in value.description %}
- <div>@{ desc | html_ify }@</div>
+ <div>@{ desc | html_ify }@
+ </div>
{% endfor %}
{% endif %}
<br/>