Format XML Templating

MIT License crates.io docs.rs

Minimal compiletime templating for XML in Rust!

The format_xml! macro accepts an XML-like syntax and transforms it into a format_args! invocation. We say XML-like because due to limitations of the macro system some concessions had to be made, see the examples below.

Features of this crate include providing the value to be formatted inline in the formatting braces and control flow for conditionally formatting all in one simple package with zero dependencies!

In your Cargo.toml add:

[dependencies] format_xml = "0.1"

Examples

Basic usage

```rust let point = (20, 30); let name = "World";

formatxml! { }.tostring() ```

The resulting string is <svg width="200" height="200"><line x1="0" y1="0" x2="20" y2="30" stroke="black" stroke-width="2" /><text x="30" y="20">Hello 'World!'</text></svg>.

Note how the expression values to be formatted are inlined in the formatting braces.

Formatting specifiers

```rust let value = 42;

formatxml! { }.tostring() ```

The resulting string is <span data-value="42">0x2a</span>.

Due to limitations of macros by example, a semicolon is used to separate the value from the formatting specifiers. The rules for the specifiers are exactly the same as the standard library of Rust.

Supported tags

rust format_xml! { <!doctype html> <?xml version="1.0" encoding="UTF-8"?> <tag-name></tag-name> <ns:self-closing-tag /> <!-- "comment" --> <![CDATA["cdata"]]> }.to_string()

The resulting string is <!doctype html><?xml version="1.0" encoding="UTF-8"?><tag-name></tag-name><ns:self-closing-tag /><!-- comment --><![CDATA[cdata]]>.

Control flow

```rust let switch = true; let opt = Some("World"); let result: Result = Err(13);

formatxml! { if let Some(name) = (opt) {

"Hello " {name}

} else if (switch) {

"Hello User"

} if (switch) { match (result) { Ok(f) => { {f} } Err(i) => { {i} } }
} else {

"No contents"

} }.to
string() ```

The resulting string is <h1>Hello World</h1><b>13</b><ul><li>1*5=5</li><li>2*5=10</li><li>3*5=15</li><li>4*5=20</li><li>5*5=25</li></ul>.

Control flow are currently only supported outside tags. They are not supported in attributes. The expressions for if and for must be surrounded with parentheses due to macro by example limitations.

Specialised attribute syntax

```rust let hasa = true; let hasb = false; let make_red = true;

formatxml! {

}.tostring() ```

The resulting string is <div class="class-a "><span style="color: red; "></span><p data-attr="has_a:true,has_b:false"></p><p data-fmt="MAKE_RED"></p></div>.

Dedicated syntax for fixed set of space delimited attribute values where each element can be conditionally included. This is specifically designed to work with the style and class attributes of html.

If attributes require more advanced formatting, the template! syntax is available by wrapping the value in parentheses. For even more power closure syntax is available to write custom formatting code. The curly braces are required.

Limitations

This crate is implemented with standard macros by example (macro_rules!). Because of this there are various limitations:

License

Licensed under MIT License, see license.txt.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions.