From e8edb856a532bd36c318ac044ed303869d30af7c Mon Sep 17 00:00:00 2001 From: Bryan Bonvallet Date: Thu, 19 Dec 2013 19:23:01 -0500 Subject: [PATCH] Reenabling santize_html now that it works. closes #160 --- karmaworld/apps/notes/gdrive.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/karmaworld/apps/notes/gdrive.py b/karmaworld/apps/notes/gdrive.py index e38ce3d..a813ed4 100644 --- a/karmaworld/apps/notes/gdrive.py +++ b/karmaworld/apps/notes/gdrive.py @@ -181,8 +181,7 @@ 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) - #FIXME: ^^^ disabled + note.sanitize_html(save=False) note.text = content_dict['text'] -- 2.25.1