module Haml::Filters::ERB
def compile(compiler, text)
- See: Base#compile -
def compile(compiler, text) return if compiler.options[:suppress_eval] src = ::ERB.new(text).src.sub(/^#coding:.*?\n/, ''). sub(/^_erbout = '';/, "") compiler.send(:push_silent, src) end