From 8a459053d67b3b1886cd69b681bd6c36a7d21a74 Mon Sep 17 00:00:00 2001 From: Mike Ryan Date: Wed, 6 Apr 2016 11:40:44 -0700 Subject: [PATCH] tools: add more entities to company ID parser This patch adds lower and uppercase u with umlaut. --- tools/parse_companies.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/parse_companies.pl b/tools/parse_companies.pl index 1746222da..f755390b5 100755 --- a/tools/parse_companies.pl +++ b/tools/parse_companies.pl @@ -10,6 +10,8 @@ my %known_entities = ( 'nbsp' => ' ', 'eacute' => 'é', 'auml' => 'ä', + 'uuml' => 'ü', + 'Uuml' => 'Ü', ); # better to use URI::Encode if you have it -- 2.47.3