XMLB

XML but with Brackets

What

```xml Some text

Some more text

  <!--
    Multi
    Line
    Comment
  -->
</foo2>

```

Becomes

``` { { Some text }

// Comment 1 // Comment 2

{ { Some more text

  /*
    Multi
    Line
    Comment
  */
}

} } ```

XML But with Brackets!

How

```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

} ```