This PR includes:
- Indentation of Jinja constructs
- Put parameter name in bold
- Title-case table headers
- Show 'required' when parameter is required (not yes/no)
- Left-align all values
# sadly we cannot blindly iterate through the child dicts,
@ -274,9 +273,9 @@ Notes
-----
.. note::
{% for note in notes %}
{% for note in notes %}
- @{ note | convert_symbols_to_format }@
{% endfor %}
{% endfor %}
{% endif %}
@ -286,17 +285,17 @@ Notes
Author
~~~~~~
{% for author_name in author %}
{% for author_name in author %}
* @{ author_name }@
{% endfor %}
{% endfor %}
{% endif %}
{% if not deprecated %}
{% set support = { 'core': 'The Ansible Core Team', 'network': 'The Ansible Network Team', 'certified': 'an Ansible Partner', 'community': 'The Ansible Community', 'curated': 'A Third Party'} %}
{% set module_states = { 'preview': 'it is not guaranteed to have a backwards compatible interface', 'stableinterface': 'the maintainers for this module guarantee that no backward incompatible interface changes will be made'} %}
{% if metadata %}
{% if metadata.status %}
{% set support = { 'core': 'The Ansible Core Team', 'network': 'The Ansible Network Team', 'certified': 'an Ansible Partner', 'community': 'The Ansible Community', 'curated': 'A Third Party'} %}
{% set module_states = { 'preview': 'it is not guaranteed to have a backwards compatible interface', 'stableinterface': 'the maintainers for this module guarantee that no backward incompatible interface changes will be made'} %}
{% if metadata %}
{% if metadata.status %}
Status
@ -307,8 +306,8 @@ This module is flagged as **@{cur_state}@** which means that @{module_states[cur
{% endfor %}
{% endif %}
{% if metadata.supported_by in ('core', 'network') %}
{% endif %}
{% if metadata.supported_by in ('core', 'network') %}
Maintenance Info
@ -317,8 +316,8 @@ Maintenance Info
For more information about Red Hat's support of this @{ plugin_type }@,
please refer to this `Knowledge Base article <https://access.redhat.com/articles/rhel-top-support-policies/>`_
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
If you want to help with development, please read :doc:`../../community/index`,