witten
/
luminotes
Archived
1
0
Fork 0

Now ignoring certain unneeded HTML tags that end up in your notes when you copy and paste text from an MS Word document: <o> and <m>.

This commit is contained in:
Dan Helfman 2009-02-11 18:37:31 -08:00
parent d0152ecc7a
commit d30caf610a
2 changed files with 4 additions and 1 deletions

3
NEWS
View File

@ -1,5 +1,6 @@
1.6.4: February ??, 2009 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 1.6.3: February 11, 2009
* Introduced cache-busting code to make pages update more reliably after a * Introduced cache-busting code to make pages update more reliably after a

View File

@ -134,6 +134,8 @@ class Html_cleaner(HTMLParser):
'title', 'title',
'head', 'head',
'body', 'body',
'o',
'm',
] ]
# A list of tags that require no closing tag. # A list of tags that require no closing tag.