blob: ef69011b071b22c3899d78a9e4ef8005e8086641 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use peanuts::xml::parsers::Parser;
use peanuts::xml::Document;
fn main() {
let document = Document::parse(
"<?xml version=\"1.0\"?>
<TEST>
<block1>Background Mark 1</block1>
<block2>Background Mark 2</block2>
<block3>Background Mark 3</block3>
</TEST>ahsdkjlfhasdlkjfhkljh
",
);
println!("{:#?}", document);
}
|