render-rs / render.rs

🔏 A safe and simple template engine with the ergonomics of JSX
https://docs.rs/render
MIT License
238 stars 23 forks source link

if macro? #39

Open vpzomtrrfrt opened 4 years ago

vpzomtrrfrt commented 4 years ago

I've found that quite often I want to output an element only if a certain condition is true. Currently that means I have to use an if expression that returns an Option, which is rather cumbersome. Should render provide an if macro to make this nicer?

theashguy commented 4 years ago

Have definitely run into this one myself.