An open API service indexing awesome lists of open source software.

https://github.com/willhackett/mustache-date-poc

proof of concept
https://github.com/willhackett/mustache-date-poc

Last synced: 8 months ago
JSON representation

proof of concept

Awesome Lists containing this project

README

          

# Mustache Functions POC

Mustache offers the ability to include functions.

Use pipes to separate arguments.

```js:
{{name}} - some date object is {{#d}}{{date}}||DD/MM/YYYY{{/d}}.

// Becomes:
// John S - some date object is 05/05/2005.
```