mirror of
https://github.com/searxng/searxng
synced 2024-11-03 09:40:20 +00:00
[fix] engine stackexchange - decode HTML entities in title & content
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
5efe77bdf5
commit
ecb3912bd0
@ -6,6 +6,7 @@
|
||||
|
||||
"""
|
||||
|
||||
import html
|
||||
from json import loads
|
||||
from urllib.parse import urlencode
|
||||
|
||||
@ -57,8 +58,8 @@ def response(resp):
|
||||
|
||||
results.append({
|
||||
'url': "https://%s.com/q/%s" % (api_site, result['question_id']),
|
||||
'title': result['title'],
|
||||
'content': content,
|
||||
'title': html.unescape(result['title']),
|
||||
'content': html.unescape(content),
|
||||
})
|
||||
|
||||
return results
|
||||
|
Loading…
Reference in New Issue
Block a user