blob: ea86e07c8df36718dd2adda63bb5bebae346876a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
use peanuts::xml::composers::Composer;
use peanuts::xml::parsers::Parser;
use peanuts::xml::Document;
#[tokio::main]
async fn main() {
let (rest, 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
",
)
.unwrap();
println!("{:#?}{}", document, rest);
let mut stdout = tokio::io::stdout();
document.write(&mut stdout).await.unwrap();
}
|