wok annotate perl-xml-writer/description.txt @ rev 24986

Up nettle 3.7.3 again, need glib-networking rebuild to no break midori
author Stanislas Leduc <shann@slitaz.org>
date Wed May 11 08:28:28 2022 -0400 (2022-05-11)
parents
children
rev   line source
Hans-G?nter@24270 1 XML::Writer is a helper module for Perl programs that write an XML document.
Hans-G?nter@24270 2 The module handles all escaping for attribute values and character data and
Hans-G?nter@24270 3 constructs different types of markup, such as tags, comments, and processing
Hans-G?nter@24270 4 instructions.
Hans-G?nter@24270 5
Hans-G?nter@24270 6 By default, the module performs several well-formedness checks to catch
Hans-G?nter@24270 7 errors during output.
Hans-G?nter@24270 8 This behaviour can be extremely useful during development and debugging,
Hans-G?nter@24270 9 but it can be turned off for production-grade code.
Hans-G?nter@24270 10
Hans-G?nter@24270 11 The module can operate either in regular mode in or Namespace processing mode.
Hans-G?nter@24270 12 In Namespace mode, the module will generate Namespace Declarations itself,
Hans-G?nter@24270 13 and will perform additional checks on the output.
Hans-G?nter@24270 14
Hans-G?nter@24270 15 Additional support is available for a simplified data mode with no mixed
Hans-G?nter@24270 16 content: newlines are automatically inserted around elements and elements
Hans-G?nter@24270 17 can optionally be indented based as their nesting level.