ejs
	
	
		can.view.ejs
	
	
	
	 
Deprecated 2.1
Use can.ejs instead.
can.view.ejs( [id,] template )
Register an EJS template string and create a renderer function.
var renderer = can.view.ejs("<h1><%= message %></h1>");
renderer({message: "Hello"}) //-> docFrag[ <h1>Hello</h1> ]
Parameters
- 
			id{String}OptionalAn optional ID to register the template. can.view.ejs("greet","<h1><%= message %></h1>"); can.view("greet",{message: "Hello"}) //-> docFrag[<h1>Hello</h1>]
- 
			template{String}An EJS template in string form. 
Returns
{renderer(data, helpers)}
		A renderer function that takes data and helpers.
can.view.ejs([id,] template)registers an EJS template string for a given id programatically. The following registersmyViewEJSand renders it into a documentFragment.To convert the template into a render function, just pass the template. Call the render function with the data you want to pass to the template and it returns the documentFragment.