Fix indentation of requirements (#36813)
Just discovered that the requirements were indented, whereas all other lists were not. This makes them stand out for no good reason.pull/4420/head
parent
38abda544f
commit
3b27d723fb
|
@ -65,16 +65,15 @@ Aliases: @{ ','.join(aliases) }@
|
|||
{% endif %}
|
||||
|
||||
{% if requirements %}
|
||||
{% set req = 'Requirements' %}
|
||||
{% set req_title = 'Requirements' %}
|
||||
{% if plugin_type == 'module' %}
|
||||
{% set req = req + ' (on host that executes module)' %}
|
||||
{% set req_title = req_title + ' (on host that executes module)' %}
|
||||
{% endif %}
|
||||
{% set req_len = req|length %}
|
||||
@{ req }@
|
||||
@{ '-' * req_len }@
|
||||
@{ req_title }@
|
||||
@{ '-' * req_title|length }@
|
||||
|
||||
{% for req in requirements %}
|
||||
* @{ req | convert_symbols_to_format }@
|
||||
* @{ req | convert_symbols_to_format }@
|
||||
{% endfor %}
|
||||
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue