summaryrefslogtreecommitdiff
path: root/searx/utils.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-02-23 15:00:38 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-02-26 07:15:39 +0100
commit2e0abc931057a8e0189b53f6501769fe26fd0bbc (patch)
treea6c68bd8322385dbbd864949429c028ed09b8551 /searx/utils.py
parent28d1240fce945a48a2c61c29fff83336410c4c77 (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/utils.py')
-rw-r--r--searx/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/utils.py b/searx/utils.py
index c7a579451..f342c2803 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -473,7 +473,7 @@ def ecma_unescape(string: str) -> str:
def remove_pua_from_str(string):
"""Removes unicode's "PRIVATE USE CHARACTER"s (PUA_) from a string.
- _PUA: https://en.wikipedia.org/wiki/Private_Use_Areas
+ .. _PUA: https://en.wikipedia.org/wiki/Private_Use_Areas
"""
pua_ranges = ((0xE000, 0xF8FF), (0xF0000, 0xFFFFD), (0x100000, 0x10FFFD))
s = []