From 575b8f4121cbbfdd017df1cb30bba937d4b13c5c Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 10 Feb 2016 20:31:13 -0700 Subject: [PATCH] podcheck.t: Need to translate E and E These can appear in links, and need to be translated into their correct character. --- t/porting/podcheck.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t index 0312ed1..0b395d0 100644 --- a/t/porting/podcheck.t +++ b/t/porting/podcheck.t @@ -1771,6 +1771,8 @@ if (! $has_input_files) { # Transform pod language to what we are expecting $node =~ s,E,/,g; $node =~ s/E/|/g; + $node =~ s/E//>/g; # If link is to a node that exists in the file, is ok if ($nodes{$linked_to_page}{$node}) { -- 1.8.3.1