# File lib/mab/rails.rb, line 3
    def content_for(*args)
      blk = proc do |*a|
        mab { yield(*a) }.html_safe
      end if block_given?

      @_helper.send(:content_for, *args, &blk)
    end