All pastes #849321 Raw Edit

Something

public javascript v1 · immutable
#849321 ·published 2008-01-10 11:12 UTC
rendered paste body
var homepage = compile(        <html xmlns='http://www.w3.org/1999/xhtml' xmlns:h='helma'>        <head><title><h:replace val='title'/></title></head>        <body>        <h:disable>hello</h:disable>        <ul>        <h:loop over='values'><li/></h:loop>        </ul>        <div>        hello, <h:replace val='v'>placeholder</h:replace>        </div>        </body>        </html>);/*repl> homepage({ 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/>      <li/>      <li/>    </ul>    <div>      hello,      undefined    </div>  </body></html>*/