### What problem does this feature solve? Let's improve template syntax by using single curly braces like in Svelte/React instead of the "Mustache" syntax (double curly braces). Current syntax ``` <h1>Hello {{ username }} !</h1> ``` ### What does the proposed API look like? New syntax ``` <h1>Hello { username } !</h1> ``` Much cleaner, less chars, better DX!