// ```test2.stpl //

Hello <%- s %>

// ``` use sailfish::TemplateOnce; use sailfish_web::option_result::Opt; #[derive(TemplateOnce)] #[template(path = "test2.stpl")] struct TestTemplate { s: Opt, } fn main() { print!( "{}\n", TestTemplate { s: Some("world".to_string()).into() } .render_once() .unwrap() ); print!("{}", TestTemplate { s: None.into() }.render_once().unwrap()) } // Output //

Hello world

//

Hello