logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Badger::Codec::HTML - encode and decode reserved characters in HTML

Acknowledgements

       This code is derived from Lincoln D. Stein's CGI module.

Author

       Andy Wardley <http://wardley.org/>

Description

       This module implements a subclass of Badger::Codec for encoding and decoding HTML.  It is based on code
       extracted from Lincoln Stein's CGI.pm module.

       The encode() method encodes HTML by converting any reserved characters to the correct HTML entities.

       The decode() method reverses this process.

Methods

encode($html,$charset)
       Encodes the HTML text passed as the first argument.

           $encoded = Badger::Codec::HTML->encode($html);

       The optional second argument can be used to indicate the character set in use.  If this is set to
       "ISO-8859-1" "WINDOWS-1252" then the encoded data will undergo some additional processing in order to
       work around some known bugs in Microsoft's web browsers.  See fix_windows().

   decode($html)
       Decodes the encoded HTML text passed as the first argument.

           $html = Badger::Codec::HTML->decode($encoded);

   fix_windows($text)
       This method is used internally to repair the damage caused by bugs in certain inferior browsers.

Name

       Badger::Codec::HTML - encode and decode reserved characters in HTML

See Also

       Badger::Codec

perl v5.36.0                                       2023-08-28                           Badger::Codec::HTML(3pm)

Synopsis

           use Badger::Codec::HTML;

           # class methods
           my $enc = Badger::Codec::HTML->encode("http://foo.com/bar.html");
           my $dec = $codec->decode($enc);

           # object methods
           my $codec = Badger::Codec::HTML->new();
           my $enc   = $codec->encode("http://foo.com/bar.html");
           my $dec   = $codec->decode($enc);

See Also