wok diff perl-xml-writer/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (2022-05-21)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-xml-writer/description.txt	Sat May 21 21:38:29 2022 +0000
     1.3 @@ -0,0 +1,17 @@
     1.4 +XML::Writer is a helper module for Perl programs that write an XML document.
     1.5 +The module handles all escaping for attribute values and character data and
     1.6 +constructs different types of markup, such as tags, comments, and processing
     1.7 +instructions.
     1.8 +
     1.9 +By default, the module performs several well-formedness checks to catch
    1.10 +errors during output.
    1.11 +This behaviour can be extremely useful during development and debugging,
    1.12 +but it can be turned off for production-grade code.
    1.13 +
    1.14 +The module can operate either in regular mode in or Namespace processing mode.
    1.15 +In Namespace mode, the module will generate Namespace Declarations itself,
    1.16 +and will perform additional checks on the output.
    1.17 +
    1.18 +Additional support is available for a simplified data mode with no mixed
    1.19 +content: newlines are automatically inserted around elements and elements
    1.20 +can optionally be indented based as their nesting level.