diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/HTML/Entities.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/HTML/Entities.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/lib/HTML/Entities.pm b/Master/tlpkg/tlperl/lib/HTML/Entities.pm index 9cba0c896ad..ecd8e0d31fa 100644 --- a/Master/tlpkg/tlperl/lib/HTML/Entities.pm +++ b/Master/tlpkg/tlperl/lib/HTML/Entities.pm @@ -34,9 +34,7 @@ character entities. The module provides the following functions: =item decode_entities( $string, ... ) This routine replaces HTML entities found in the $string with the -corresponding Unicode character. Under perl 5.6 and earlier only -characters in the Latin-1 range are replaced. Unrecognized -entities are left alone. +corresponding Unicode character. Unrecognized entities are left alone. If multiple strings are provided as argument they are each decoded separately and the same number of strings are returned. @@ -148,7 +146,7 @@ require Exporter; @EXPORT = qw(encode_entities decode_entities _decode_entities); @EXPORT_OK = qw(%entity2char %char2entity encode_entities_numeric); -$VERSION = "3.68"; +$VERSION = "3.69"; sub Version { $VERSION; } require HTML::Parser; # for fast XS implemented decode_entities |