Fast, minimal, feature-rich, xml-like formatting syntax for Rust!
We say xml-like because due to limitations and flexibility some concessions had to be made; see the examples below.
Features include:
In your Cargo.toml, add:
text
[dependencies]
format_xml = "0.2"
```rust let point = (20, 30); let name = "World";
let string = format_xml::format! { };
assert_eq!(string, r#""#); ```
The value arguments can be arbitrary expressions. They are inlined in the formatting braces and are outside the string literals.
The values inside formatting braces are escaped by default, the text literals are not. Use the escape hatch to bypass the automatic escaping.
```rust let value = 42;
let string = format_xml::format! { };
assert_eq!(string, r#"0x2a"#); ```
The rules for the specifiers are exactly the same as the standard library of Rust.
```rust let value = ""quote""; let text = "";
let string = format_xml::format! {
};
assert_eq!(string, r#"
<script>&</script>
"#); ```The values inside formatting braces are escaped by default, the text literals are not.
<
, &
, >
.<
, &
, >
, '
, "
.--
by removing it altogether.]]>
.Escaping is not implemented in some HTML contexts:
inside <script>
, <style>
tags or their respective attribute equivalents (event lers and inline styles),
do not format user controlled values in these locations!
```rust
let string = format_xml::format! {
assert_eq!(string, r#"
Examples of element naming and namespace syntax support:
```rust
let string = formatxml::format! {
assert_eq!(string, r#"
There are no restrictions on matching open/close tags or reject tags which cannot be self-closing.
Unfinished implementation:
<!doctype>
tag is barely functional.<?xml?>
tag is barely functional.```rust let switch = true; let opt = Some("World");
let string = format_xml::format! { if let Some(name) = (opt) {
assert_eq!(string, "
```rust
let string: Result
let string = format_xml::format! { match string { Ok(f) => {f}, Err(i) => {i}, } };
assert_eq!(string, "13"); ```
```rust
let string = formatxml::format! {
for i in (1..=5) {
let times
five = i * 5;
assert_eq!(string, "
Control flow is only supported outside tags, not in attributes.
```rust fn compose(f: &mut std::fmt::Formatter, a: i32) -> std::fmt::Result { format_xml::write!(f, {a}) }
let string = format_xml::format! {
|f| compose(f, 42)?;
};assert_eq!(string, r#"
42
"#); ```Closure syntax provides an escape hatch to inject code if needed.
The argument's type is &mut Formatter
.
Important! Anything written to the formatter f
is not escaped.
This makes it useful to compose different components wich is not possible with {}
.
Licensed under MIT License, see license.txt.
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.