Skip to content

Self-referential Templates

Choose a tag to compare

@Sinjhin Sinjhin released this 07 Sep 17:09
· 777 commits to master since this release

DEPRECATED: Should have been minor release 3.7.0

Added *self as a partial that refers to the whole template renderer.

var renderer = stache(`
	<span>{{name}}</span>
	{{#./child}}
		<div>
			{{>*self}}
		</div>
	{{/child}}
`);