Module Erubis::DeleteIndentEnhancer
In: erubis/enhancer.rb

delete indentation of HTML.

this is language-independent.

Methods

Public Instance methods

[Source]

# File erubis/enhancer.rb, line 578
    def convert_input(src, input)
      input = input.gsub(/^[ \t]+</, '<')
      super(src, input)
    end

[Validate]