Sha256: 4bd2db0aa2a74fbce0c864c69efab2f7f6a9adec61e5368299520be4beeb2d58
Contents?: true
Size: 841 Bytes
Versions: 38
Compression:
Stored size: 841 Bytes
Contents
# encoding: utf-8 class Sanitize module Config BASIC = freeze_config( :elements => RESTRICTED[:elements] + %w[ a abbr blockquote br cite code dd dfn dl dt kbd li mark ol p pre q s samp small strike sub sup time ul var ], :attributes => { 'a' => %w[href], 'abbr' => %w[title], 'blockquote' => %w[cite], 'dfn' => %w[title], 'q' => %w[cite], 'time' => %w[datetime pubdate] }, :add_attributes => { 'a' => {'rel' => 'nofollow'} }, :protocols => { 'a' => {'href' => ['ftp', 'http', 'https', 'mailto', :relative]}, 'blockquote' => {'cite' => ['http', 'https', :relative]}, 'q' => {'cite' => ['http', 'https', :relative]} } ) end end
Version data entries
38 entries across 38 versions & 2 rubygems