Introduction
  Publishing web pages
  RXML
  Information tags
  String tags
    <ai>
    <autoformat>
    <case>
    <comment>
    <doc>
    <fl>
    <obox>
    <smallcaps>
    <sort>
    <source>
    <spell>
    <tablify>
    <trimlines>
  Variable tags
  URL tags
  If tags
  Graphics tags
  Database tags
  LDAP
  Programming tags
  SSI tags
  Image maps
  IntraSeek
  LogView
  Templates
  Navigation
  SiteBuilder tags
  Supports system
  Security
  Appendix
 
<doc> </> Main RXML parser

 

This tag simplifies writing html examples. Within the <doc> tag { will be replaced by &< and } by &>. Thus eliminating the need to write &lt; and &gt; manually.

 

Attributes

pre
Encloses the section within a <pre> tag as well.

 

Example


<doc pre>
{table}
  {tr}
    {td} First cell {/td}
    {td} Second cell {/td}
  {/tr}
{/table}
</doc>

<table>
  <tr>
    <td> First cell </td>
    <td> Second cell </td>
  </tr>
</table>