wok annotate perl-xml-writer/description.txt @ rev 25096
created recipe for wordgrinder
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 18 15:13:12 2022 +0100 (2022-06-18) |
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. |