Larry Davis
Larry Davis
Current visual tests are always successful. Visual tests that fail, error, or timeout should be tested as well.
``` html {{Coral.i18n.get("English string: {0}", 25)}} ``` Results in: ``` Warning: Function.prototype.toString is not generic ```
In order for users to know which elements were created by DOMly, it should be possible to add a marker attribute to every generated element. This allows users to perform...
Expressions should be allowed in statements: 1. `{{variable+1}}` 2. `{{variable+method()}}` 3. `{{method(variable+otherVariable)}}` 4. ``
The output is less than ideal when `\{` and `\}` are present -- there is additional string concatenation going on in the compiled function that is pretty ugly: Template: ```...
Currently, only `if-prop` attributes are supported and the same conditional must be repeated as `unless-prop` for the `else` block. It would be nice to have `else` statements somehow.
`{{{statement}}}` should insert unescaped HTML instead of textContent, like Mustache and Handlebars.
Investigate complication, benefits, and additional features that could be supported by this
Currently, the `frag` branch generates a cloneable document fragment for an entire template if it doesn't have any dynamic aspects. This should be done on a smaller scale where it...