From 49e7f9afe2b5b57fc9e092a972d4491f7ad7bcb0 Mon Sep 17 00:00:00 2001 From: Wojciech Sciesinski Date: Mon, 10 Feb 2020 21:30:04 +0100 Subject: [PATCH] Link the testing documentation to the module documenting page (#67248) --- .../rst/dev_guide/developing_modules_documenting.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/docsite/rst/dev_guide/developing_modules_documenting.rst b/docs/docsite/rst/dev_guide/developing_modules_documenting.rst index 134695f2b74..1e73007ed3a 100644 --- a/docs/docsite/rst/dev_guide/developing_modules_documenting.rst +++ b/docs/docsite/rst/dev_guide/developing_modules_documenting.rst @@ -281,7 +281,7 @@ You can link from your module documentation to other module docs, other resource .. note:: - For modules in a collection, you can only use ``L()`` and ``M()`` for content within that collection. Use ``U()`` to refer to content in a different collection. + For modules in a collection, you can only use ``L()`` and ``M()`` for content within that collection. Use ``U()`` to refer to content in a different collection. .. note:: @@ -454,3 +454,10 @@ After the shebang, the UTF-8 coding, the copyright line, the license, and the se from module_utils.basic import AnsibleModule The use of "wildcard" imports such as ``from module_utils.basic import *`` is no longer allowed. + +.. _dev_testing_module_documentation: + +Testing module documentation +============================ + +To test Ansible documentation locally please :ref:`follow instruction`.