diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2018-04-18 18:14:26 +0200 |
---|---|---|
committer | Toshio Kuratomi <a.badger@gmail.com> | 2018-04-18 19:06:01 +0200 |
commit | 8cdd75a09f471961f949428f689e7083bbeff2b5 (patch) | |
tree | cb5a340d393e143eabc2091cc7be97d3c748e765 /docs/templates | |
parent | [AWS cloudfront_distribution] Update minimum protocol versions (#38644) (diff) | |
download | ansible-8cdd75a09f471961f949428f689e7083bbeff2b5.tar.xz ansible-8cdd75a09f471961f949428f689e7083bbeff2b5.zip |
Some more fixes for the docs :ref: disambiguation
The big one is that we needed to set plugin_type when we processed the by_support template.
Also added to list_of_CATEGORY_plugins page (which might not be used)
and corrected a place where I did module_name instead of name_module
Diffstat (limited to 'docs/templates')
-rw-r--r-- | docs/templates/list_of_CATEGORY_plugins.rst.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/templates/list_of_CATEGORY_plugins.rst.j2 b/docs/templates/list_of_CATEGORY_plugins.rst.j2 index fba836c68b..0f9b611fb1 100644 --- a/docs/templates/list_of_CATEGORY_plugins.rst.j2 +++ b/docs/templates/list_of_CATEGORY_plugins.rst.j2 @@ -25,7 +25,7 @@ .. toctree:: :maxdepth: 1 {% for module in info['_modules'] | sort %} - :ref:`@{ module }@`{% if module_info[module]['deprecated'] %} **(D)**{% endif%} -- @{ module_info[module]['doc']['short_description'] }@ + :ref:`@{ module }@_@{ plugin_type }@`{% if module_info[module]['deprecated'] %} **(D)**{% endif%} -- @{ module_info[module]['doc']['short_description'] }@ {% endfor %} {% endfor %} |