Templates are a pretty healthy business in established programming languages, but are there any good ones that can be processed in Javascript?
By "template" I mean a document that accepts a data object as input, inserts the data into some kind of serialized markup language, and outputs the markup. Well-known examples are JSP, the original PHP, XSLT.
By "good" I mean that it's declarative and easy for an HTML author to write, that it's robust, and that it's supported in other languages too. Something better than the options I know about. Some examples of "not good":
String math:
element.innerHTML = "<p>Name: " + data.name
+ "</p><p>Email: " + data.email + "</p>";
clearly too unwieldy, HTML structure not apparent.
XSLT:
<p><xsl:text>Name: </xsl:text><xsl:value-of select="//data/name"></p>
<p><xsl:text>Email: </xsl:text><xsl:value-of select="//data/email"></p>
// structurally this works well, but let's face it, XSLT confuses HTML developers.
Trimpath:
<p>Name: ${data.name}</p><p>Email: ${data.email}</p>
// This is nice, but the processor is only supported in Javascript, and the language is sort of primitive (http://code.google.com/p/trimpath/wiki/JavaScriptTemplateSyntax)
I'd love to see a subset of JSP or ASP or PHP ported to the browser, but I haven't found that.
What are people using these days in Javascript for their templating?
Addendum
After a few months there have been plenty of workable template languages posted here, but most of them aren't usable in any other language. Most of these templates couldn't be used outside a javascript engine.
The exception is Microsoft's -- you can process the same ASP either in the browser or in any other ASP engine. That has its own set of portability problems, since you're bound to Microsoft systems. I've marked that as the answer, but am still interested in more portable solutions.
Thanks for all the input so far!