[fix] description escaping

This commit is contained in:
asciimoo 2013-10-22 23:17:22 +02:00
parent 650d57fba7
commit 9bd4459638

View file

@ -1,5 +1,6 @@
from urllib import urlencode
from json import loads
from cgi import escape
categories = ['it']
@ -20,6 +21,6 @@ def response(resp):
for res in search_res['items']:
title = res['name']
url = res['html_url']
content = res['description']
content = escape(res['description'][:500])
results.append({'url': url, 'title': title, 'content': content})
return results