-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change É into HTML character entity reference in generate.html.orgnam…
…escope See ukf/ukf-meta#258 for details.
- Loading branch information
Alex Stuart
committed
Nov 9, 2020
1 parent
b30d65d
commit fdebe00
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #!/usr/bin/perl -w -p -i | ||
| # | ||
| # É is changed to HTML character entity reference É | ||
| # | ||
| # An awful bodge to fix output of IdPInfoList. Our instance of | ||
| # PMwiki encodes pages in windows-1252 (single byte character encoding), | ||
| # and IdPInfoList includes a file encoded in UTF-8. All is well until | ||
| # we have a 2-byte character in GÉANT. | ||
| # | ||
| binmode(STDOUT, ":encoding(UTF-8)"); | ||
| s/É/É/g; |