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.
- Host: GitHub
- URL: https://github.com/developit/templeton
- Owner: developit
- License: mit
- Created: 2014-03-04T01:31:37.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T06:28:55.000Z (over 8 years ago)
- Last Synced: 2025-04-10T11:16:12.145Z (9 months ago)
- Language: JavaScript
- Homepage: http://npm.im/templeton
- Size: 19.5 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
templeton [](https://www.npmjs.org/package/templeton) [](http://bower.io/search/?q=templeton) [](https://travis-ci.org/developit/templeton)
=========
It's like the other ones but not at all like the other ones.

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