exml 0.7.2

Pure Rust XML library based on libxml2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE somedoc [
<!ENTITY a "something">
<!ENTITY b "&a;">
]>
<somedoc>

<somebeacon someattribute="&b;"/>

&a; should appear after colon: &a;
&b; should appear after colon: &a;
&a; should appear after colon: &b;
&b; should appear after colon: &b;

</somedoc>