Flowdock
trim_line1(line) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/erb.rb, line 338
      def trim_line1(line)
        line.split(TrimSplitRegexp).each do |token|
          next if token.empty?
          if token == "%>\n"
            yield('%>')
            yield(:cr)
            break
          end
          yield(token)
        end
      end
Register or log in to add new notes.