Unless escapeHtml="false"
is explicitly set, the <s:property>
tag escapes HTML by default:
<s:property value="someValue" />
<!-- the HTML contained in "someValue" will be escaped. -->
Does <s:set>
also behave this way ?
<s:set var="myVariable" value="someValue" />
<!-- will the HTML contained in "someValue" be escaped ? -->