소스 검색

Merge pull request #801 from dalf/extract_text

[fix] extract_text: use html.tostring instead html_to_text.
Adam Tauber 8 년 전
부모
커밋
525e5d275c
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      searx/engines/xpath.py

+ 3
- 1
searx/engines/xpath.py 파일 보기

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