XMLGEN -- A module to generate XML and/or HTML by writing Tcl code which
          translates itself.
          (C) 2002 Harald Kirsch

WHAT IS IT?
===========

You declare the XML tags you want as Tcl commands. Then you can use
the natural bracing structure of Tcl to write XML while having all the
niceties of the script language to define shortcuts or add dynamic
content. 

A simple example based on htmlgen, a module which predefines all the
HTML tags.

set Title "A Simple Example"
html ! {
  head ! {
    title - $Title
  }
  body ! {
    h1 - $Title
    p - As you can see, title and major headline agree.
  }
}

INSTALLATION
============
This is a pure Tcl package. Consequently it suffices to copy the
relevant files into a subdirectory of the directories mentioned in
$auto_path. Note that auto_path can be initialized via the environment
variable TCLLIBPATH.

Run ./install -h and follow the instructions.

LICENSE 
=======
BSD derived, see file LICENSE	  


CONTACT
=======
Harald Kirsch
pifpafuf bei gmx punkt de
