xml-doc 0.1.1

Read, modify and write xml in tree-like structure. Supports UTF-16.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Root:
  - Element:
      name: root
      attributes:
        attr1: "val1"
        attr2: "val2"
      namespaces:
        : "http://example.xml"
      children:
        - Element:
            name: tag2
            namespaces:
              : "tag2 namespace"
              p: "p namespace"
            children:
              - Element:
                  name: p:a
        - Text: "Text"