# File lib/html5/tokenizer.rb, line 219
    def process_entity_in_attribute
      entity = consume_entity()
      if entity
        @current_token[:data][-1][1] += entity
      else
        @current_token[:data][-1][1] += "&"
      end
    end