module Erubis::DeleteIndentEnhancer
delete indentation of HTML.
this is language-independent.
Public Instance Methods
convert_input(src, input)
click to toggle source
Calls superclass method
# File lib/erubis/enhancer.rb, line 622 def convert_input(src, input) input = input.gsub(/^[ \t]+</, '<') super(src, input) end