summaryrefslogtreecommitdiffstats
path: root/docs/templates
diff options
context:
space:
mode:
authorJohn R Barker <john@johnrbarker.com>2017-12-20 11:49:09 +0100
committerJordan Borean <jborean93@gmail.com>2017-12-20 11:49:09 +0100
commit7381554e42d4223866d3dd39e8922923fdb72630 (patch)
tree999b7ad47339a84ab7b4610819d04987fbf3c294 /docs/templates
parentfix options output for bool type (#34074) (diff)
downloadansible-7381554e42d4223866d3dd39e8922923fdb72630.tar.xz
ansible-7381554e42d4223866d3dd39e8922923fdb72630.zip
Compact documentation (#34081)
Before this fix lists of `documentation:` were in individual <p> tags causing a lot of whitespace on the rendered _module.html pages.
Diffstat (limited to 'docs/templates')
-rw-r--r--docs/templates/plugin.rst.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/templates/plugin.rst.j2 b/docs/templates/plugin.rst.j2
index 5598bca2e9..e35f851f3e 100644
--- a/docs/templates/plugin.rst.j2
+++ b/docs/templates/plugin.rst.j2
@@ -166,7 +166,7 @@ Options
<div>@{ value.description | replace('\n', '\n ') | html_ify }@</div>
{% else %}
{% for desc in value.description %}
- <p>@{ desc | replace('\n', '\n ') | html_ify }@</p>
+ <div>@{ desc | replace('\n', '\n ') | html_ify }@</div>
{% endfor %}
{% endif %}
{% if 'aliases' in value and value.aliases %}