# XMLB
**XML** but with **B**rackets
# What
```xml
Some text
Some more text
```
Becomes
```
{
{ Some text }
// Comment 1
// Comment 2
{
{
Some more text
/*
Multi
Line
Comment
*/
}
}
}
```
**XML** But with **B**rackets!
# How
```rust
use xmlb::XMLBFile;
fn main() {
let source: String = xmlb_source_code;
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
}
```