rendered paste bodyvar 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>*/