In qa-plugin/wysiwyg-editor/qa-wysiwyg-editor.php what is line 217 doing:
$htmlformatting=preg_replace('/<\s*\/?\s*(br|p)\s*\/?\s*>/i', '', $html); // remove <p>, <br>, etc... since those are OK in text
I am not good at regular expressions... is it really removing <p> and <br> tags from the content? And why actually?