diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-02-23 15:00:38 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-02-26 07:15:39 +0100 |
| commit | 2e0abc931057a8e0189b53f6501769fe26fd0bbc (patch) | |
| tree | a6c68bd8322385dbbd864949429c028ed09b8551 /searx/engines | |
| parent | 28d1240fce945a48a2c61c29fff83336410c4c77 (diff) | |
[fix] various issues in the documentation
Closes: https://github.com/searxng/searxng/issues/4370
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines')
| -rw-r--r-- | searx/engines/gitea.py | 2 | ||||
| -rw-r--r-- | searx/engines/json_engine.py | 4 | ||||
| -rw-r--r-- | searx/engines/lemmy.py | 2 | ||||
| -rw-r--r-- | searx/engines/qwant.py | 2 | ||||
| -rw-r--r-- | searx/engines/seekr.py | 2 | ||||
| -rw-r--r-- | searx/engines/xpath.py | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/searx/engines/gitea.py b/searx/engines/gitea.py index 446d84472..ff6f95c83 100644 --- a/searx/engines/gitea.py +++ b/searx/engines/gitea.py @@ -30,7 +30,7 @@ Optional settings are: shortcut: forgejo If you would like to use additional instances, just configure new engines in the -:ref:`settings <settings engine>` and set the ``base_url``. +:ref:`settings <settings engines>` and set the ``base_url``. Implementation diff --git a/searx/engines/json_engine.py b/searx/engines/json_engine.py index 1906f9d9e..a243d5c85 100644 --- a/searx/engines/json_engine.py +++ b/searx/engines/json_engine.py @@ -54,7 +54,7 @@ Example ======= Here is a simple example of a JSON engine configure in the :ref:`settings -engine` section, further read :ref:`engines-dev`. +engines` section, further read :ref:`engines-dev`. .. code:: yaml @@ -384,7 +384,7 @@ def extract_response_info(result): def response(resp): - '''Scrap *results* from the response (see :ref:`engine results`).''' + '''Scrap *results* from the response (see :ref:`result types`).''' results = [] if no_result_for_http_status and resp.status_code in no_result_for_http_status: diff --git a/searx/engines/lemmy.py b/searx/engines/lemmy.py index 1845431d7..d301de4c6 100644 --- a/searx/engines/lemmy.py +++ b/searx/engines/lemmy.py @@ -16,7 +16,7 @@ The engine has the following additional settings: - :py:obj:`lemmy_type` This implementation is used by different lemmy engines in the :ref:`settings.yml -<settings engine>`: +<settings engines>`: .. code:: yaml diff --git a/searx/engines/qwant.py b/searx/engines/qwant.py index 7ad6cf58a..8ab02b256 100644 --- a/searx/engines/qwant.py +++ b/searx/engines/qwant.py @@ -17,7 +17,7 @@ The engine has the following additional settings: - :py:obj:`qwant_categ` This implementation is used by different qwant engines in the :ref:`settings.yml -<settings engine>`: +<settings engines>`: .. code:: yaml diff --git a/searx/engines/seekr.py b/searx/engines/seekr.py index 967eef86d..3bd739964 100644 --- a/searx/engines/seekr.py +++ b/searx/engines/seekr.py @@ -13,7 +13,7 @@ The engine has the following additional settings: - :py:obj:`api_key` This implementation is used by seekr engines in the :ref:`settings.yml -<settings engine>`: +<settings engines>`: .. code:: yaml diff --git a/searx/engines/xpath.py b/searx/engines/xpath.py index db892d392..b1bef923d 100644 --- a/searx/engines/xpath.py +++ b/searx/engines/xpath.py @@ -52,7 +52,7 @@ Example ======= Here is a simple example of a XPath engine configured in the :ref:`settings -engine` section, further read :ref:`engines-dev`. +engines` section, further read :ref:`engines-dev`. .. code:: yaml |