XML but with Brackets
```xml
<!--
Multi
Line
Comment
-->
</foo2>
```
Becomes
```
// Comment 1 // Comment 2
/*
Multi
Line
Comment
*/
}
} } ```
XML But with Brackets!
```rust use xmlb::XMLBFile;
fn main() { let source: String = xmlbsourcecode;
let xmlb_file = XMLBFile::from_string(source);
// Convert to xml
let xml = xmlb_file.to_xml(true); // true or false to keep comments or not
} ```