Ver código fonte

[fix] extract_text: use html.tostring instead html_to_text. Fix #711

Alexandre Flament 8 anos atrás
pai
commit
90e1db3e5c
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3
    1
      searx/engines/xpath.py

+ 3
- 1
searx/engines/xpath.py Ver arquivo

@@ -42,7 +42,9 @@ def extract_text(xpath_results):
42 42
         return ''.join(xpath_results)
43 43
     else:
44 44
         # it's a element
45
-        return html_to_text(xpath_results.text_content()).strip()
45
+        text = html.tostring(xpath_results, encoding='unicode', method='text', with_tail=False)
46
+        text = text.strip().replace('\n', ' ')
47
+        return ' '.join(text.split())
46 48
 
47 49
 
48 50
 def extract_url(xpath_results, search_url):