diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-06 13:45:25 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-01-06 14:10:58 +0100 |
commit | 61935c72efa3c164184cecccc7cdc5713a93d654 (patch) | |
tree | 29cb887129d4b496891b0a28dec61f6b7d592712 /docs/admin | |
parent | 03189d60f474e2aeb758760ecae8140771c8c75d (diff) | |
download | searxng-61935c72efa3c164184cecccc7cdc5713a93d654.tar.gz searxng-61935c72efa3c164184cecccc7cdc5713a93d654.zip |
[fix] remove broken ? search operator
The ? search operator has been broken for some time and
currently only raises the question why it's still there.
## Context ##
The query "Paris !images" searches for "Paris" in the "images" category.
Once upon a time Searx supported "Paris ?images" to search for "Paris"
in the currently enabled categories and the "images" category.
The feature makes sense ... the ? syntax does not.
We will hopefully introduce a +!images syntax in the future.
Fixes #702.
Diffstat (limited to 'docs/admin')
-rw-r--r-- | docs/admin/engines/settings.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/admin/engines/settings.rst b/docs/admin/engines/settings.rst index 71e841774..a829b870c 100644 --- a/docs/admin/engines/settings.rst +++ b/docs/admin/engines/settings.rst @@ -302,7 +302,7 @@ engine is shown. Most of the options have a default value or even are optional. search engine. ``shortcut`` : - Code used to execute bang requests (in this case using ``!bi`` or ``?bi``) + Code used to execute bang requests (in this case using ``!bi``) ``base_url`` : optional Part of the URL that should be stable across every request. Can be useful to |