mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
Added "See Also" section (#11369)
* Added "See Also" section * Corrected seealso documentation * Update ini_file.py Removed seealso descriptions * Update to_ini.py Removed seealso descriptions * Update from_ini.py Removed seealso descriptions
This commit is contained in:
parent
ddf05104f3
commit
20ba59cce6
3 changed files with 19 additions and 0 deletions
|
|
@ -16,6 +16,12 @@ options:
|
||||||
description: A string containing an INI document.
|
description: A string containing an INI document.
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
|
seealso:
|
||||||
|
- plugin: community.general.to_ini
|
||||||
|
plugin_type: filter
|
||||||
|
- plugin: ansible.builtin.ini
|
||||||
|
plugin_type: lookup
|
||||||
|
- module: community.general.ini_file
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = r"""
|
EXAMPLES = r"""
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,12 @@ options:
|
||||||
description: The dictionary that should be converted to the INI format.
|
description: The dictionary that should be converted to the INI format.
|
||||||
type: dictionary
|
type: dictionary
|
||||||
required: true
|
required: true
|
||||||
|
seealso:
|
||||||
|
- plugin: ansible.builtin.ini
|
||||||
|
plugin_type: lookup
|
||||||
|
- module: community.general.ini_file
|
||||||
|
- plugin: community.general.from_ini
|
||||||
|
plugin_type: filter
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = r"""
|
EXAMPLES = r"""
|
||||||
|
|
|
||||||
|
|
@ -150,6 +150,13 @@ options:
|
||||||
notes:
|
notes:
|
||||||
- While it is possible to add an O(option) without specifying a O(value), this makes no sense.
|
- While it is possible to add an O(option) without specifying a O(value), this makes no sense.
|
||||||
- As of community.general 3.2.0, UTF-8 BOM markers are discarded when reading files.
|
- As of community.general 3.2.0, UTF-8 BOM markers are discarded when reading files.
|
||||||
|
seealso:
|
||||||
|
- plugin: ansible.builtin.ini
|
||||||
|
plugin_type: lookup
|
||||||
|
- plugin: community.general.from_ini
|
||||||
|
plugin_type: filter
|
||||||
|
- plugin: community.general.to_ini
|
||||||
|
plugin_type: filter
|
||||||
author:
|
author:
|
||||||
- Jan-Piet Mens (@jpmens)
|
- Jan-Piet Mens (@jpmens)
|
||||||
- Ales Nosek (@noseka1)
|
- Ales Nosek (@noseka1)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue