-- | -- Simple parse functions. -- -- Version : $Id: HdomParser.hs,v 1.15 2003/05/02 13:24:16 hxml Exp $ -- -- -- the "main" building blocks for an application. -- this module exports all important functions for parsing, validating and transforming XML. -- it also exports all basic datatypes and functions of the toolbox. -- module HdomParser ( module XmlTree , module XmlState , module XmlParser , module HtmlParser , module XmlInput , module EditFilters , module XmlOutput , module DTDProcessing , module Validation , module FormatXmlTree , module Namespace ) where import XmlTree import XmlState import XmlParser import HtmlParser import XmlInput import XmlOutput import DTDProcessing import Validation import EditFilters import FormatXmlTree import Namespace -- ------------------------------------------------------------