Sfoglia il codice sorgente

Merge pull request #801 from dalf/extract_text

[fix] extract_text: use html.tostring instead html_to_text.
Adam Tauber 8 anni fa
parent
commit
525e5d275c
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3
    1
      searx/engines/xpath.py

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

42
         return ''.join(xpath_results)
42
         return ''.join(xpath_results)
43
     else:
43
     else:
44
         # it's a element
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
 def extract_url(xpath_results, search_url):
50
 def extract_url(xpath_results, search_url):