raw_html_block.rb 198 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 class RawHTMLBlock < Block def self.description _('Raw HTML') end settings_items :html, :type => :text def content (title.blank? ? '' : block_title(title)) + html.to_s end end