Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 7 down vote accepted

You can use ${mystring.raw()} i think. Or embed it inside a #{verbatim} tag. -morten

share|improve this answer
thank you. both are working – sdespolit Oct 27 '11 at 17:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.