Introduction
  Publishing web pages
  RXML
  Information tags
  String tags
  Variable tags
    <set>
    <unset>
    <cset>
    <append>
    <define>
    <undefine>
    <insert>
    <use>
    <formoutput>
  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
 
<undefine> Main RXML parser

 

Removes a previously defined tag, container tag or define.

 

Attributes

name
Undefine this define.

tag
Undefine this tag.

container
Undefine this container tag.

 

Example


<define container=h1>
<gtext><contents></gtext>
</define>

<h1>Hello</h1>

<undefine container=h1>

<h1>World</h1>

Hello

World