$FilteredMessages

$FilteredMessages is a keyed list of references allowing the retrieveal of user-entered text associated with the current run.  The difference from $Messages is that basic HTML formatting tags are preserved while other HTML tags are eliminated.  Specifically, HTML tags <b>, <i>, <u>, <strong>, <em>, <a> (without Javascript), <img>, <ol>, <ul>, <li>, <pre>, <div>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <h7>, <h8>, <h9>, <br>, and <p> are allowed.  In addition, two carriage returns (i.e. one blank line) will cause a <p> tag to be automatically inserted.

A specific message can be retrieved with get(key name), for example:

 
$FilteredMessages.get("our_strategy")
 

 

This assumes that a message was previously stored with a form field named M_our_strategy.  

Example:

If the user has previously entered the following text as a message with key "our_strategy":

<b>bolded text</b>  This HTML <table> is not processed </table>

Then the following will be output the to the user's browser:

$FilteredMessages has no properties or methods.