# File lib/mab/indentation.rb, line 3
     def mab_insert(str)
      if i = @mab_context.options[:indentation]
        super([$/ + "  " * i, str])
      else
        @mab_context.options[:indentation] = 0
        super
      end
    end