c:out outputs <p> rather than <p>
Hi,
In my jsp, I have
<c:out value="${model.section1}"/>
where section1 is a string pre-processed by my
Java code to have
and
for htmlparagraphs. I prefer inserting the
and
in my Java code because I know how to manipulate
Strings in Java but not jsp.
Anyway, c:out is too smart for my purpose.
It translates
to
automatically,
which is not what I wanted. Is there a way to
stop this automatic translation?
Thanks,
-lpanl

