All pastes #849533 Raw Edit

Someone

public javascript v1 · immutable
#849533 ·published 2008-01-10 16:21 UTC
rendered paste body
var homepage = compile(        <html xmlns='http://www.w3.org/1999/xhtml' xmlns:h='helma'>                                          <head><title h:content='title'/></head>        <body>        <span h:disable='true'>hello</span>        <ul>        <li h:loop='values'>        Value is now: <span h:replace='__iter'/>        </li>        </ul>        <div>        hello, <span h:replace='audience'>placeholder</span>        </div>        <div>Sample inline code: <h:eval>2+2</h:eval></div>        </body>        </html>);XML.prettyPrinting=truehomepage({ title: 'home', audience:'world', values: [1,2,3] });/*<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="helma">  <head>    <title>home</title>  </head>  <body>    <ul>      <li>        Value is now:	1      </li>      <li>        Value is now:	2      </li>      <li>        Value is now:        3      </li>    </ul>    <div>      hello,      world    </div>     <div>       Sample inline code:      4    </div>  </body></html>*/