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)

Convert ESCAPE characters into their corresponding entities.
def initialize(string = nil, escape = true)
	if string
		super(string)
		ESCAPE.gsub!(self) if escape
	else
		super()
	end
end