# File lib/mab/mixin.rb, line 37
      def method_missing(name, *args, &blk)
        name = name.to_s

        if name[-1] == ?!
          @_attributes[:id] = name[0..-2]
        else
          if @_attributes.has_key?(:class)
            @_attributes[:class] += " #{name}"
          else
            @_attributes[:class] = name
          end
        end

        _insert(*args, &blk)
      end