Assume the template consists of only one variable:
${tree}
and the corrsponding Conttoller code is:
render("some html markup");
As a result i get a quoted string, but want to recieve just the html string. Is there a way to do this?
|
Assume the template consists of only one variable:
and the corrsponding Conttoller code is:
As a result i get a quoted string, but want to recieve just the html string. Is there a way to do this? |
||||
|
|
|
You can use ${mystring.raw()} i think. Or embed it inside a #{verbatim} tag. -morten |
|||
|
|