mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes for multiline doc descriotions breaking rst formatting
* strip whitespace to preserve indent level * Make sure to indent subsequent lines of indentation
This commit is contained in:
parent
ede1d6158a
commit
6ddc64bc7c
2 changed files with 3 additions and 3 deletions
|
@ -117,7 +117,7 @@ def html_ify(text):
|
||||||
t = _CONST.sub(r"<code>\1</code>", t)
|
t = _CONST.sub(r"<code>\1</code>", t)
|
||||||
t = _RULER.sub(r"<hr/>", t)
|
t = _RULER.sub(r"<hr/>", t)
|
||||||
|
|
||||||
return t
|
return t.strip()
|
||||||
|
|
||||||
|
|
||||||
def rst_fmt(text, fmt):
|
def rst_fmt(text, fmt):
|
||||||
|
|
4
docs/templates/plugin.rst.j2
vendored
4
docs/templates/plugin.rst.j2
vendored
|
@ -327,10 +327,10 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
|
||||||
<td>
|
<td>
|
||||||
<div class="cell-border">
|
<div class="cell-border">
|
||||||
{% if value.description is string %}
|
{% if value.description is string %}
|
||||||
<div>@{ value.description | html_ify }@</div>
|
<div>@{ value.description | html_ify |indent(4)}@</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% for desc in value.description %}
|
{% for desc in value.description %}
|
||||||
<div>@{ desc | html_ify }@</div>
|
<div>@{ desc | html_ify |indent(4)}@</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<br/>
|
<br/>
|
||||||
|
|
Loading…
Reference in a new issue