mirror of
https://github.com/searxng/searxng.git
synced 2024-11-22 12:10:11 +01:00
[fix] remove html tags from qwant results
This commit is contained in:
parent
be6ae81cb2
commit
c3dcebb778
@ -10,9 +10,11 @@
|
||||
@parse url, title, content
|
||||
"""
|
||||
|
||||
from urllib import urlencode
|
||||
from json import loads
|
||||
from datetime import datetime
|
||||
from json import loads
|
||||
from urllib import urlencode
|
||||
|
||||
from searx.utils import html_to_text
|
||||
|
||||
# engine dependent config
|
||||
categories = None
|
||||
@ -66,9 +68,9 @@ def response(resp):
|
||||
# parse results
|
||||
for result in res.get('items', {}):
|
||||
|
||||
title = result['title']
|
||||
title = html_to_text(result['title'])
|
||||
res_url = result['url']
|
||||
content = result['desc']
|
||||
content = html_to_text(result['desc'])
|
||||
|
||||
if category_to_keyword.get(categories[0], '') == 'web':
|
||||
results.append({'title': title,
|
||||
|
Loading…
Reference in New Issue
Block a user