Text::Quote is intended as a utility class for other classes that need to be
able to produce valid perl quoted strings. It posses routines to determine
the ideal quote character to correctly quote hash keys, to correctly quote
and encode binary strings.
This module allows to perform case-insensitive lookups using case-folding.
Case-folding is a part of the Unicode standard that allows any two strings
that differ from one another only by case to map to the same "case-folded"
form, even when those strings include characters with complex case-mappings.
TTH translates TeX source that uses the Plain macro package, or
LaTeX, into a near equivalent in HTML. It is extremely fast and
completely portable. It produces web documents that are more compact
and managable, and faster-viewing, than those from other converters,
because it really translates the equations, instead of converting them
into images.
Unicode::Unihan - The Unihan Data Base 5.1.0
use Unicode::Unihan;
my $db = new Unicode::Unihan;
print join("," => $db->Mandarin("\x{5c0f}\x{98fc}\x{5f3e}"), "\n";
This module provides a user-friendly interface to the Unicode Unihan
Database 5.1.0. With this module, the Unihan database is as easy as shown in
above.
This module exists to generate basic Atom syndication feeds. While it
does not provide a full, object-oriented interface into all the nooks
and crannies of Atom feeds, an Atom parser, or an Atom client API, it
should be useful for people who want to generate basic, valid Atom feeds
of their content quickly and easily.
XML::Dumper dumps Perl data to a structured XML format. XML::Dumper can
also read XML data that was previously dumped by the module and convert
it back to Perl.
This might be useful for dumping Perl objects to files using an XML
format that can be reloaded or accessed by other programs. Maybe even
other languages.
-Anton
<tobez@FreeBSD.org>
XML::Grove is a tree-based object model for accessing the information
set of parsed or stored XML, HTML, or SGML instances. XML::Grove
objects are Perl hashes and arrays where you access the properties
of the objects using normal Perl syntax.
This module is a companion for XML::LibXML. It operates with LibXML
objects, could return or accept LibXML objects, and may be used for
easy data transformations.
It is faster in parsing then XML::Simple, XML::Hash, XML::Twig and
of course much slower than XML::Bare.
It is faster in composing than XML::Hash, but slower than XML::Simple.
This module takes one function at its use line. Afterwards, all
single-line <...> calls that looks like a XML literal will be
processed with that function, instead of the built-in shell glob.
Support for qx<...> overriding for multiline XML literals is planned
for Perl 5.10.
XML::Simple is a Perl module that makes it really easy to read and write XML
files.
XML::Simple was originally developed for the purpose of reading and writing
config files in XML format (which offers various advantages over say .INI
format). Having said that, many people find it useful for other purposes.