We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9643e93 commit 23d4a81Copy full SHA for 23d4a81
1 file changed
verify-code-snippets.pl
@@ -44,8 +44,9 @@ ($)
44
45
# decode encoded HTML characters (e.g., '&' -> '&')
46
for (my $pageIndex = 0; $pageIndex < @page; $pageIndex++) {
47
- # HACK: decode ' ' -> ' ' (not 0xa0)
+ # HACK: decode ' ' and ' ' to ' ' (not 0xa0 or similar)
48
$page[$pageIndex] =~ s/ / /g;
49
+ $page[$pageIndex] =~ s/ / /g;
50
51
$page[$pageIndex] = decode_entities($page[$pageIndex]);
52
}
0 commit comments