class ActionView::Template::HTML

def initialize(string, type = nil)

def initialize(string, type = nil)
  @string = string.to_s
  @type   = Types[type] || type if type
  @type ||= Types[:html]
end