Browse Source

[fix] title escaping

asciimoo 11 years ago
parent
commit
fa6f430f2e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/engines/stackoverflow.py

+ 1 - 1
searx/engines/stackoverflow.py

@@ -19,7 +19,7 @@ def response(resp):
     for result in dom.xpath('//div[@class="question-summary search-result"]'):
         link = result.xpath('.//div[@class="result-link"]//a')[0]
         href = urljoin(url, link.attrib.get('href'))
-        title = ' '.join(link.xpath('.//text()'))
+        title = escape(' '.join(link.xpath('.//text()')))
         content = escape(' '.join(result.xpath('.//div[@class="excerpt"]//text()')))
         results.append({'url': href, 'title': title, 'content': content})
     return results