diff options
-rw-r--r-- | htmlbuffer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htmlbuffer.py b/htmlbuffer.py index bf42aabe5..b4a21fc7e 100644 --- a/htmlbuffer.py +++ b/htmlbuffer.py @@ -23,7 +23,7 @@ import re class HTMLBuffer(HTMLParser.HTMLParser): ignoreTags = ('title',) - noTagTags = ('html', 'div', 'head') + noTagTags = ('html', 'div', 'head', 'span') newlineTags = ('p', 'h1', 'h2', 'li') whiteSpaceNuker = re.compile(r"""\s+""", re.MULTILINE) def __init__(self): |