java web playframework: how to ignore Evaluating Expression in a Template? -
in view (may application/index.html), had content like:
... <div>${don't need evaluate content} </div> ...
i don't want play! evaluate it, display absolutely content on screen, how can ?
update:
thank loic , niels, have checked them, both solutions:
#{verbatim}${don't need evaluate content}#{/verbatim}
and
<div>'${don't need evaluate content}' </div>
didn't work!
note that, use xml in response type.
i managed working using following
<div>${don't need evaluate content}</div>
Comments
Post a Comment