A library for creating and applying templates using Handlebars.
Go to file
2016-11-20 12:37:00 +01:00
.gitlab-ci.yml initial 2016-11-20 12:35:46 +01:00
package.json 1.0.1 2016-11-20 12:37:00 +01:00
README.md initial 2016-11-20 12:35:46 +01:00
tslint.json initial 2016-11-20 12:35:46 +01:00

tlt

templates done right

Usage

We recommend the use of TypeScript for best in class Intellisense

import * as tlt from 'tlt

let myTlt = new tlt('my template String for {{somePlaceholder}} and {{anotherPlaceholder}}')
myTlt.getStringFor({
    "somePlaceholder": "pushrocks",
    "anotherPlaceholder": "anotherPlaceholder"
})