Q. The SurveyWriter HTML editor sometimes removes tags and other
formatting from the page. Why is that?
A. The editor automatically parses and removes non-standard HTML tags or adds missing tags to incomplete HTML statements. There are times when you want a particular statement to
stay exactly as you wrote it. If you want the HTML parsing engine to ignore some or part of your page,
surround the text with two carats on either side of the statement (^^).
For example, if you wanted to include a <Script> tag within the page, the
Editor would automatically remove it because technically <script> tags are not allowed in the body of an HTML page.
To ignore this rule, type the following:
----------------------------------
^^<script language="javascript">
assorted Javascript code
</script>^^
----------------------------------