method
add_text
rails latest stable - Class:
ActionView::Template::Handlers::Erubis
add_text(src, text)public
No documentation available.
# File actionview/lib/action_view/template/handlers/erb.rb, line 12
def add_text(src, text)
return if text.empty?
if text == "\n"
@newline_pending += 1
else
src << "@output_buffer.safe_append='"
src << "\n" * @newline_pending if @newline_pending > 0
src << escape_text(text)
src << "'.freeze;"
@newline_pending = 0
end
end