From: Josh Williams Date: Tue, 15 Oct 2013 19:43:02 +0000 (-0400) Subject: Re-disable the HTML sanitize for now X-Git-Tag: release-20150131~386^2~58 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bab7fc21ff30ba5363a1353fedee1805ed0e3a06;p=oweals%2Fkarmaworld.git Re-disable the HTML sanitize for now --- diff --git a/karmaworld/apps/notes/gdrive.py b/karmaworld/apps/notes/gdrive.py index ca5e62f..7960054 100644 --- a/karmaworld/apps/notes/gdrive.py +++ b/karmaworld/apps/notes/gdrive.py @@ -269,7 +269,8 @@ def convert_raw_document(raw_document): elif 'html' in content_dict and content_dict['html']: note.html = content_dict['html'] # before we save new html, sanitize a tags in note.html - note.sanitize_html(save=False) + #note.sanitize_html(save=False) + #FIXME: ^^^ disabled note.text = content_dict['text']