Version: Next
Parsing
note
You won't need to use or understand Parsing unless you're writing native helpers or plugins.
Syntax
Examples
var myTemplate = 'Hi, my name is {{it.name}}'
var compiled = Sqrl.parse(myTemplate)
//Returns a Squirrelly syntax tree (like an AST):
// ['Hi, my name is ', { f: [], c: 'it.name', t: 'r' }]