From 846248cd78860fbd28950ceb3b8715bcb9af4e5f Mon Sep 17 00:00:00 2001 From: Revathyvenugopal162 Date: Tue, 27 May 2025 15:58:33 +0200 Subject: [PATCH 1/2] docs: update the nmutkiindex doc --- doc/source/user-guide/options.rst | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/doc/source/user-guide/options.rst b/doc/source/user-guide/options.rst index fffd0e13a..6d055c53e 100644 --- a/doc/source/user-guide/options.rst +++ b/doc/source/user-guide/options.rst @@ -197,19 +197,18 @@ Multi-index search ^^^^^^^^^^^^^^^^^^ To enable search across multiple documentation sources, use the ``search_extra_sources`` key. -This key should be assigned a list of dictionaries, where each dictionary represents an external index. -Each entry must contain a display name and the URL of the documentation to be included. +This key should be a dictionary where each key is the name of the source and the value is the URL to that source. **Example:** .. code-block:: python html_theme_options = { - "search_extra_sources": [ - {"name": "PyMAPDL", "url": "https://mapdl.docs.pyansys.com/version/stable/"}, - {"name": "PyAnsys", "url": "https://docs.pyansys.com/version/stable/"}, - ], - } + "search_extra_sources": + { + "PyMAPDL": "https://mapdl.docs.pyansys.com/version/stable/", + "PyAnsys": "https://docs.pyansys.com/version/stable/", + } Search filters ^^^^^^^^^^^^^^ From 0e86c8e1d5720b29f40b0a54870d945e5160dc14 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 27 May 2025 13:59:51 +0000 Subject: [PATCH 2/2] chore: adding changelog file 708.documentation.md [dependabot-skip] --- doc/changelog.d/708.documentation.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/708.documentation.md diff --git a/doc/changelog.d/708.documentation.md b/doc/changelog.d/708.documentation.md new file mode 100644 index 000000000..9abe60767 --- /dev/null +++ b/doc/changelog.d/708.documentation.md @@ -0,0 +1 @@ +update the multi-index docs \ No newline at end of file