Browse Source

Merge pull request #801 from dalf/extract_text

[fix] extract_text: use html.tostring instead html_to_text.
Adam Tauber 8 years ago
parent
commit
525e5d275c
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      searx/engines/xpath.py

+ 3
- 1
searx/engines/xpath.py View File

@@ -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):