Lines Matching defs:render
32 into a function once using `compile()`, and then render it whenever you need to
34 and render a template once, `render()` is a handy shortcut for doing both in a
39 Y.Handlebars.render('The pie of the day is {{pie}}!', {
44 @method render
45 @param {String} string Handlebars template string to render.
47 @param {Object} [options] Compile/render options.
53 Handlebars.render = function (string, context, options) {
61 Compiles a Handlebars template string into a function. To render the template,
82 To render a precompiled template, evaluate the code and then pass the resulting