class ActionView::Template::HTML
:nodoc:
= Action View HTML Template
:nodoc:
:nodoc:
def format
def format @type end
def identifier
def identifier "html template" end
def initialize(string, type)
def initialize(string, type) @string = string.to_s @type = type end
def render(*args)
def render(*args) to_str end
def to_str
def to_str ERB::Util.h(@string) end