-
add some native operations: boolean operators, basic arithmetic. These can be implemented as functions in the FFI, but would be better to have syntactic support. For example
if(foo || bar)
instead ofif(or([foo,bar]))
-
optionally ignore whitespace before/after template clause, same as ERB's
<%-
- The default instance for
HasTemplates
should include functions for sanatizing user generated content. Perhaps introduce a type wrapper with two constructors,NeedsEscape str | Raw str
.