I'm a relative rails newbie and have a question about the sanitize gem. It is easy to install and use, but for some reason when I choose to have my own elements array, it isn't working. It is still sanitizing the elements I'm trying to approve. Here's my code:
def scrub(html)
# Setup whitelist of html elements that are allowed.
allowed_elements = ['b', 'blockquote', 'em', 'i', 'li', 'ol', 'p', 'pre', 'u', 'ul']
Sanitize.clean(html, :elements => allowed_elements)
end
but it is showing the following as a result:
<p> And Some Content... <script>mal</script>
and <em>italics and bold</em></p>
<ol> <li> list</li> <li> list</li> </ol>
<blockquote> <p> blockquote</p> </blockquote>
<ul> <li> bullet</li> <li> bullet</li> </ul>
thanks for any pointers about why this simple format isn't working!