portalLib.sanitizeHtml() removes macros added in HtmlArea

sanitizeHtml is used to make some untrusted HTML safer. It allows only very basic tags and no scripts or iframes. H handful function to sanitize user-input (blog post comments, for instance) before it is stored.

processHtml is a function that generates trusted HTML from HtmlArea. Since it is trusted, sanitizeHtml should not be applied to it.