Skip to content

frentsel/_tpl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 

Repository files navigation

TPL

TPL it's a simple template system in JavaScript with data nesting ability.

Example HTML

<p>User: {user.name}, age:{user.age}, mother: {user.parent.mother}</p>

Data and JS

var data = {
  user: {
    name: "Alex",
    age: 27,
    parent: {
      mother: "Samantha"
    }
  }
};
var result = tpl(html, data);

Result

<p>User: Alex, age: 27, mother: Samantha</p>

About

_tpl is a template system in JavaScript

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published