use clap::Parser;
use laby::{html, Render};
#[derive(Parser)]
struct Args {
input: String,
output: String,
}
fn main() {
let args = Args::parse();
}
fn scaffold(title: String, body: impl Render) -> impl Render {
html!(head!(title!(title)), body!())
}