Signed-off-by: Drew Fisher <drew.m.fisher@gmail.com>
paragraphs.append("\n".join(thispara))
# wrap paragraphs in <p></p> if they aren't other HTML tags that don't want to be wrapped in <p> tags
- return map( lambda x: x if "<ol>" in x or "<ul>" in x or "<pre>" in x else "<p>" + x + "</p>", paragraphs)
+ return map( lambda x: x if "<ol>" in x or "<ul>" in x or "<pre>" in x or "<table>" in x else "<p>" + x + "</p>", paragraphs)
def getFileList(numdays=7):