# File lib/html5/html5parser/in_table_phase.rb, line 93
    def endTagOther(name)
      parse_error("unexpected-end-tag-implies-table-voodoo", {"name" => name})
      # Make all the special element rearranging voodoo kick in
      @tree.insert_from_table = true
      # Process the end tag in the "in body" mode
      @parser.phases[:inBody].processEndTag(name)
      @tree.insert_from_table = false
    end