A convenience macro for use with `quick-xml`, to save one from
its verbosity!
Example usage:
```rust
// Create the event
let event = xml!(<person name="Josh"
// Write said event
let mut writer = Writer::new(Cursor::new(Vec::new()));
writer.write_event(event).unwrap();
// Check it matches our expectations
assert_eq!(
)
```