class Erubi::Engine

def add_text(text)

Add raw text to the template
def add_text(text)
  @src << " #{@bufvar} << '" << text.gsub(/['\\]/, '\\\\\&') << "';" unless text.empty?
end