Hi,
I just added TinyMCE to a small CMS I built in Rails. I've been using Redcloth before to style user generated articles.
Since I started using TinyMCE, I would like to also allow users to embed video (from youtube for ex) into their blog posts.
I'm using the follow helper in the views:
sanitize(text,
:tags => %w(a object p param h1 h2 h3 h4 h5 h6 br hr ul li img),
:attributes => %w(href name src type value width height data) )
Is this safe? Or should I not allow those tags? If so, which tags can I allow? How can I test to make sure?
This is still in staging.
Thanks
Deb