37 lines
956 B
Rust
37 lines
956 B
Rust
fn main() {
|
|
// this list would ideally be generated on the fly out of the written html,
|
|
// but i don't want to unneeded dependencies to this crate
|
|
let classes = [
|
|
"mt[10rem]",
|
|
"color[#e20f00]",
|
|
"color[green]hover",
|
|
"content[attr(after)]$after",
|
|
"content['*']$before",
|
|
"color[red]$after",
|
|
];
|
|
|
|
let css = dbg!(zephyr::generate_css(&classes));
|
|
|
|
let html = format!(
|
|
r#"
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<style>{css}</style>
|
|
</head>
|
|
<body>
|
|
<p class="color[#e20f00] color[green]hover content['*']$before">
|
|
this text is red, but green on hover
|
|
</p>
|
|
<p class="mt[10rem] content[attr(after)]$after color[red]$after" after="hi, this is an after text">
|
|
this text has a lot of margin
|
|
</p>
|
|
</body>
|
|
</html>
|
|
"#
|
|
);
|
|
|
|
std::fs::write("./examples/index.html", html).unwrap();
|
|
}
|