Re-disable the HTML sanitize for now
authorJosh Williams <jwilliams@endpoint.com>
Tue, 15 Oct 2013 19:43:02 +0000 (15:43 -0400)
committerJosh Williams <jwilliams@endpoint.com>
Tue, 15 Oct 2013 19:43:02 +0000 (15:43 -0400)
karmaworld/apps/notes/gdrive.py

index ca5e62f0583a128ff1b1f4573048aadd06d8f5b6..79600547c79fbbb4a4c4558cb70508628d504de5 100644 (file)
@@ -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']