Accessors for setting security restrictions.
This is a nice thing if you're using RedCloth for formatting in public places (e.g. Wikis) where you don't want users to abuse HTML for bad things.
If :filter_html is set, HTML which wasn't created by the Textile processor will be escaped. Alternatively, if :sanitize_html is set, HTML can pass through the Textile processor but unauthorized tags and attributes will be removed.
If :filter_styles is set, it will also disable the style markup specifier. ('{color: red}')
If :filter_classes is set, it will also disable class attributes. ('!(classname)image!')
If :filter_ids is set, it will also disable id attributes. ('!(classnameid)image!')
Accessors for setting security restrictions.
This is a nice thing if you're using RedCloth for formatting in public places (e.g. Wikis) where you don't want users to abuse HTML for bad things.
If :filter_html is set, HTML which wasn't created by the Textile processor will be escaped. Alternatively, if :sanitize_html is set, HTML can pass through the Textile processor but unauthorized tags and attributes will be removed.
If :filter_styles is set, it will also disable the style markup specifier. ('{color: red}')
If :filter_classes is set, it will also disable class attributes. ('!(classname)image!')
If :filter_ids is set, it will also disable id attributes. ('!(classnameid)image!')
Accessors for setting security restrictions.
This is a nice thing if you're using RedCloth for formatting in public places (e.g. Wikis) where you don't want users to abuse HTML for bad things.
If :filter_html is set, HTML which wasn't created by the Textile processor will be escaped. Alternatively, if :sanitize_html is set, HTML can pass through the Textile processor but unauthorized tags and attributes will be removed.
If :filter_styles is set, it will also disable the style markup specifier. ('{color: red}')
If :filter_classes is set, it will also disable class attributes. ('!(classname)image!')
If :filter_ids is set, it will also disable id attributes. ('!(classnameid)image!')
Accessors for setting security restrictions.
This is a nice thing if you're using RedCloth for formatting in public places (e.g. Wikis) where you don't want users to abuse HTML for bad things.
If :filter_html is set, HTML which wasn't created by the Textile processor will be escaped. Alternatively, if :sanitize_html is set, HTML can pass through the Textile processor but unauthorized tags and attributes will be removed.
If :filter_styles is set, it will also disable the style markup specifier. ('{color: red}')
If :filter_classes is set, it will also disable class attributes. ('!(classname)image!')
If :filter_ids is set, it will also disable id attributes. ('!(classnameid)image!')
Deprecated accessor for toggling hard breaks.
Traditional RedCloth converted single newlines to HTML break tags, but later versions required :hard_breaks be set to enable this behavior. :hard_breaks is once again the default.
Accessor for toggling lite mode.
In lite mode, block-level rules are ignored. This means that tables, paragraphs, lists, and such aren't available. Only the inline markup for bold, italics, entities and so on.
r = RedCloth.new( "And then? She *fell*!", [:lite_mode] ) r.to_html #=> "And then? She <strong>fell</strong>!"
Accessor for toggling span caps.
Textile places `span' tags around capitalized words by default, but this wreaks havoc on Wikis. If :no_span_caps is set, this will be suppressed.
Accessors for setting security restrictions.
This is a nice thing if you're using RedCloth for formatting in public places (e.g. Wikis) where you don't want users to abuse HTML for bad things.
If :filter_html is set, HTML which wasn't created by the Textile processor will be escaped. Alternatively, if :sanitize_html is set, HTML can pass through the Textile processor but unauthorized tags and attributes will be removed.
If :filter_styles is set, it will also disable the style markup specifier. ('{color: red}')
If :filter_classes is set, it will also disable class attributes. ('!(classname)image!')
If :filter_ids is set, it will also disable id attributes. ('!(classnameid)image!')
Returns a new RedCloth object, based on string, observing any restrictions specified.
r = RedCloth.new( "h1. A *bold* man" ) #=> "h1. A *bold* man" r.to_html #=>"<h1>A <b>bold</b> man</h1>"
# File lib/redcloth/textile_doc.rb, line 67 def initialize( string, restrictions = [] ) restrictions.each { |r| method("#{r}=").call( true ) } super( string ) end
Generated with the Darkfish Rdoc Generator 2.