Are there a javascript template engine which supports formatters?
That is, I can tell the template engine that it should be using a custom formatter (with a clean syntax).
Something like (borrowing jsrender syntax):
<td>{{:DateOfBirth, 'PrettyDate'}}</td>
Where 'PrettyDate'
is mapped to a function which formats the date in a certain way.