class Trenni::MarkupString
Initialized from text which is escaped to use HTML entities.
def self.raw(string)
def self.raw(string) self.new(string, false) end
def initialize(string = nil, escape = true)
def initialize(string = nil, escape = true) if string super(string) ESCAPE.gsub!(self) if escape else super() end end