# File lib/Borges/HTML/HtmlAttributes.rb, line 34
  def method_missing(attr, value = nil)
    attr = attr.to_s
    attr = attr.chop! if attr =~ /=$/

    if value.nil? then
      @attributes << " #{attr}=\"#{attr}\""
    else
      @attributes << " #{attr}=\"#{value}\""
    end
  end