Hey I'm trying to find a way to restrict users from using certain tags like h1. or h2.in the form field. Like I dont want them to be able to blow up the form field and spam.

Is there way to do that or do I have to change it in the gem library?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Checkout this post on how to allow certain tags: http://jeff.jones.be/technology/articles/textile-filtering-with-redcloth/

config/initializers/redcloth_extension.rb

module RedCloth::Formatters::HTML
  include RedCloth::Formatters::Base
  def after_transform(text)
    text.chomp!
    clean_html(text, ALLOWED_TAGS)
  end
  ALLOWED_TAGS = {
      'a' => ['href', 'title'],
      'br' => [],
      'i' => nil
  end
end
link|improve this answer
Great reply thanks! I hope its working for rails3, too – DannyRe Jan 24 '11 at 19:23
1  
Confirmed working for Rails 3. – Thilo Apr 22 '11 at 3:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.