2 releases
0.1.1 | Dec 3, 2023 |
---|---|
0.1.0 | Dec 3, 2023 |
#479 in Template engine
9KB
176 lines
hyprtxt
Concept
A simple HTML templating proc macro. I was inspired to make this after reading hypermedia.systems.
Example
use hyprtxt::hyprtxt;
fn main() {
let x = hyprtxt!(
"html" {
"lang"="en"
"head" {
"title" { $: "this is a test" }
"meta"* { "dum"="brane" }
}
"body" {
"div" {
"class"="class"
"id"="id"
"type"="idk"
"p" { $: "paragraph" }
$: "stuff"
$: "moar stuff"
}
}
}
);
assert_eq!(x, "<html lang=\"en\"><head><title>this is a test</title><meta dum=\"brane\"></head><body><div class=\"class\" id=\"id\" type=\"idk\"><p>paragraph</p>stuffmoar stuff</div></body></html>".to_string())
}
Dependencies
~220–650KB
~16K SLoC