To prevent WebDNA from interpreting [xxx] tags, enclose the text inside a [Raw] context. The text inside the container is displayed unchanged until the [ /Raw] tag is found. Unlike most other WebDNA contexts, you cannot nest [Raw] contexts inside of each other.
Example (normally you would put the following text into a .tpl file on your server and use a web browser to link to it):
In the example above, the displayed text will be
Any text, including any [xxx] tags such as [date] or [delete]
This context is most often used within WebDNA's documentation to make it possible to display the unmodified tags without first interpreting them. Also, any HTML pages on your site that have many [] characters may be misinterpreted by WebDNA, so surround those pages with <!-- [ Raw]-->...entire text of page...<!-- [ /Raw]-->. Notice the <!-- --> HTML comments in this example: they are used so that if this page is ever displayed without being processed by WebDNA, the [ Raw] tags will be invisible.