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

MKDoc::XML::Encode - Encodes XML entities

Api

my$xml_encoded=MKDoc::XML::Encode->process($some_string);
       Does what is said in the summary.

Author

       Copyright 2003 - MKDoc Holdings Ltd.

       Author: Jean-Michel Hiver

       This module is free software and is distributed under the same license as Perl itself. Use it at your own
       risk.

Name

       MKDoc::XML::Encode - Encodes XML entities

See Also

       MKDoc::XML::DecodeHO MKDoc::XML::Encode

perl v5.36.0                                       2022-10-13                            MKDoc::XML::Encode(3pm)

Summary

       MKDoc::XML::Encode is a very simple module which encodes the following entities.

         '
         "
         >
         <
         &

       That's it.

       This module and its counterpart MKDoc::XML::Decode are used by MKDoc::XML::Dumper to XML-encode and XML-
       decode litterals.

Synopsis

         use MKDoc::XML::Encode;

         # $xml is now "Chris' Baloon"
         my $xml = MKDoc::XML::Encode->process ("Chris' Baloon");

See Also