1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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!()) }