libxml 0.3.8

A Rust wrapper for libxml2 - the XML C parser and toolkit developed for the Gnome project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0"?>
<document>
  <test>
    <empty/>
  </test>
  <test>
    <p xml:id="start">Hello</p>
    <deeper>
      <p xml:id="mid"> </p>
    </deeper>
    <deeper>
      <still>
        <p xml:id="end">World!</p>
      </still>
    </deeper>
  </test>
</document>