From: Douglas Shearer Date: 2007-12-04T04:06:23+09:00 Subject: Redcloth ignore YouTube embeds? Hi folks. I'm trying to process blog posts using RedCloth, stripping any html entered by the user, but leaving , and tags untouched. So far I've tried... # ======================== require 'rubygems' require 'redcloth' t = 'I am a *badger* ' t = t.gsub( /()/ , "#{$1}") r = RedCloth.new(t, [:filter_html]) p r.to_html # ======================== => "

I am a badger

" But the object tags are still stripped, as the filter_html ignores the notextlie tags. Has anyone done similar to this before, or know how I can add tags to the ignore list? Thanks in advance. -- Posted via http://www.ruby-forum.com/.