diff options
author | Thomas Renard <Thomas.Renard@g3la.de> | 2016-12-11 14:05:07 +0100 |
---|---|---|
committer | Thomas Renard <Thomas.Renard@g3la.de> | 2016-12-11 14:05:07 +0100 |
commit | 16c40ffefddd4277a299ef5e8603235ac45de7d9 (patch) | |
tree | 02a20730728ae4382641ef856ec5a303dc4563bb /searx | |
parent | 75c58fd008e3d10dff788d133904a7904dd4635f (diff) | |
download | searxng-16c40ffefddd4277a299ef5e8603235ac45de7d9.tar.gz searxng-16c40ffefddd4277a299ef5e8603235ac45de7d9.zip |
htmlize yacy contents
Diffstat (limited to 'searx')
-rw-r--r-- | searx/engines/yacy.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/searx/engines/yacy.py b/searx/engines/yacy.py index c2f1bc7ef..92cf881c0 100644 --- a/searx/engines/yacy.py +++ b/searx/engines/yacy.py @@ -16,6 +16,8 @@ from json import loads from urllib import urlencode from dateutil import parser +from searx.utils import html_to_text + # engine dependent config categories = ['general', 'images'] # TODO , 'music', 'videos', 'files' paging = True @@ -88,7 +90,7 @@ def response(resp): # append result results.append({'url': result['link'], 'title': result['title'], - 'content': result['description'], + 'content': html_to_text(result['description']), 'publishedDate': publishedDate}) # TODO parse video, audio and file results |