When I process a keyword like this:
In the HTML template I have:
<p>@msg</p>and in code I have:
if SameText(AObjectName, 'msg') then AValue := 'Must be Logged In<br />This was not activated';
When it is processed the engine automatically encodes all the HTML so in the browser it is rendered like this:
Must be Logged In<br />This was not activated
This is because the stencil processor processed it into this:
Must be Logged In<br />This was not activated
I am expecting the browser to render it like this:
Must be Logged In
This was not activated
This means you can't output any HTML from the stencil keywords. Is there any provision for outputting HTML in the processed keywords?
I <3 you, which would be invalid HTML. Also consider using punctuation when outputting text.