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