module Erubis::DeleteIndentEnhancer

def self.desc # :nodoc:

:nodoc:
def self.desc   # :nodoc:
  "delete indentation of HTML."
end

def convert_input(src, input)

def convert_input(src, input)
  input = input.gsub(/^[ \t]+</, '<')
  super(src, input)
end