tree: 15a921cb012f6cb9efe29c2a86a5101b1d54a971 [path history] [tgz]
  1. books.xml
  2. README.md
  3. xml_flatten.dart
  4. xml_grep.dart
  5. xml_pp.dart
xml/example/README.md

Dart XML Examples

This package contains examples to illustrate the use of Dart XML. A tutorial and full documentation is contained in the package description and API documentation.

xml_flatten

This example contains a command-line application that flattens an XML documents from the file-system into a list of events that are printed to the console. For example:

dart example/xml_flatten.dart example/books.xml

xml_pp

This example contains a command-line application that reads XML documents from the file-system and pretty prints the formatted document to the console.

dart example/xml_pp.dart example/books.xml

xml_grep

This example contains a command-line application that reads XML documents from the file-system and prints matching tags to the console. For example:

dart example/xml_grep.dart -t title example/books.xml