paragraph and break support in comments
For those following such things, I've added the following lines to post.sanitize() in order to more gracefully handle paragraph and break tags in trackbacks and comments:
body=re.sub('<br\s*/?>\n?','\n',body) body=re.sub('</?p>','\n\n',body).strip()