rdxl 0.1.11

Rusty Domain Extensible Language
Documentation

Rusty Domain Extensible Language

Domain specific language macros for Rust to generate html or xml or AST.

let my_int = 3;
let my_str = "asdf";
let my_vec = vec![true, false, true, true];

println!(rdxl!(<div>
   {{ for v in my_vec.iter() }}
      <span>{{my_int}}, {{my_str}}, {{v}}</span>
   {{ end }}
</div>));

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in rdxl by you, shall be licensed under the MIT license without any additional terms or conditions.