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

https://github.com/developit/templeton

:muscle: Templating like the other ones, but not at all like the other ones.
https://github.com/developit/templeton

Last synced: 9 months ago
JSON representation

:muscle: Templating like the other ones, but not at all like the other ones.

Awesome Lists containing this project

README

          

templeton [![NPM Version](http://img.shields.io/npm/v/templeton.svg?style=flat)](https://www.npmjs.org/package/templeton) [![Bower Version](http://img.shields.io/bower/v/templeton.svg?style=flat)](http://bower.io/search/?q=templeton) [![Build Status](http://img.shields.io/travis/developit/templeton.svg?branch=master&style=flat)](https://travis-ci.org/developit/templeton)
=========

It's like the other ones but not at all like the other ones.

![Templeton Peck](http://img4.wikia.nocookie.net/__cb20100115042531/a-team/images/7/79/Templeton_Peck.jpg)

---

Example
-------

```JavaScript
var output = templeton.template('Hello, {{user}}!', {
user : 'World'
});
console.log(output); // "Hello, World!"
```