elan-ev / ogrim

XML builder macro letting you write XML inside Rust code

Home Page:https://docs.rs/ogrim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ogrim: macro for building XML from inline XML

CI status of main Crates.io Version docs.rs

XML builder macro letting you write XML inside Rust code (similar to serde_json::json!). Features:

  • Value interpolation (with escaping of course)
    • Interpolate lists or optional attributes with <foo {..iter}>
  • Auto close tags for convenience (e.g. <foo>"body"</>)
  • Minimal memory allocations (only the String being built allocates)
  • Choice between minimized and pretty XML
use ogrim::xml;

let cat_name = "Tony";
let doc = xml!(
    <?xml version="1.0" ?>
    <zoo name="Lorem Ipsum" openingYear={2000 + 13}>
        <cat>{cat_name}</>
        <dog>"Barbara"</>
    </>
);

println!("{}", doc.as_str()); // Print XML

See the documentation for more information and examples.


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

XML builder macro letting you write XML inside Rust code

https://docs.rs/ogrim

License:Apache License 2.0


Languages

Language:Rust 100.0%