diff --git a/NEWS b/NEWS index 1c1fbaa..5696568 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,6 @@ 1.6.4: February ??, 2009 - * + * Now ignoring certain unneeded HTML tags that end up in your notes when you + copy and paste text from an MS Word document. 1.6.3: February 11, 2009 * Introduced cache-busting code to make pages update more reliably after a diff --git a/controller/Html_cleaner.py b/controller/Html_cleaner.py index 4d0e2f7..1ee6095 100644 --- a/controller/Html_cleaner.py +++ b/controller/Html_cleaner.py @@ -134,6 +134,8 @@ class Html_cleaner(HTMLParser): 'title', 'head', 'body', + 'o', + 'm', ] # A list of tags that require no closing tag.