From 20ba59cce6b979c6abc6d1ea090f7684d8e1aa59 Mon Sep 17 00:00:00 2001 From: daomah <129229601+daomah@users.noreply.github.com> Date: Fri, 2 Jan 2026 03:35:06 -0500 Subject: [PATCH] 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 --- plugins/filter/from_ini.py | 6 ++++++ plugins/filter/to_ini.py | 6 ++++++ plugins/modules/ini_file.py | 7 +++++++ 3 files changed, 19 insertions(+) diff --git a/plugins/filter/from_ini.py b/plugins/filter/from_ini.py index cef6e56051..91f1349d43 100644 --- a/plugins/filter/from_ini.py +++ b/plugins/filter/from_ini.py @@ -16,6 +16,12 @@ options: description: A string containing an INI document. type: string 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""" diff --git a/plugins/filter/to_ini.py b/plugins/filter/to_ini.py index ee46fd37a9..387143fb2a 100644 --- a/plugins/filter/to_ini.py +++ b/plugins/filter/to_ini.py @@ -16,6 +16,12 @@ options: description: The dictionary that should be converted to the INI format. type: dictionary 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""" diff --git a/plugins/modules/ini_file.py b/plugins/modules/ini_file.py index 9f27485e20..14fc709e63 100644 --- a/plugins/modules/ini_file.py +++ b/plugins/modules/ini_file.py @@ -150,6 +150,13 @@ options: notes: - 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. +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: - Jan-Piet Mens (@jpmens) - Ales Nosek (@noseka1)