Thanks for a nice library! I ran into a case where I want to conditionally insert some markup, the condition being on an `Option`. Ended up writing ```rs html! { @if let Some(n) = foo() { (n) } } ``` but it would have been cool if ```rs html! { (foo()) } ``` worked, and behaved identically.