Parcourir la source

Merge pull request #782 from cy8aer/yacyhtmltag

htmlize yacy contents
Adam Tauber il y a 8 ans
Parent
révision
6b6007fc78
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3
    1
      searx/engines/yacy.py

+ 3
- 1
searx/engines/yacy.py Voir le fichier

@@ -16,6 +16,8 @@ from json import loads
16 16
 from urllib import urlencode
17 17
 from dateutil import parser
18 18
 
19
+from searx.utils import html_to_text
20
+
19 21
 # engine dependent config
20 22
 categories = ['general', 'images']  # TODO , 'music', 'videos', 'files'
21 23
 paging = True
@@ -88,7 +90,7 @@ def response(resp):
88 90
             # append result
89 91
             results.append({'url': result['link'],
90 92
                             'title': result['title'],
91
-                            'content': result['description'],
93
+                            'content': html_to_text(result['description']),
92 94
                             'publishedDate': publishedDate})
93 95
 
94 96
         # TODO parse video, audio and file results