in reply to Re: matth
in thread data format for the input of attribute data into an XML data sheet

Do all XML builders from CPAN require Document Type Definitions (DTDs) to do their job?

Replies are listed 'Best First'.
Re: Re: Re: matth
by pike (Monk) on Dec 03, 2002 at 08:11 UTC
    As far as I remember, neither XML::DOM nor XML::LibXML (or, to be exact, the respective "Document" subclasses) require a DTD. But you can verify your document against a DTD after you're done building (e. g. XML::LibXML::Document has a method is_valid () which accepts an XML::LibXML::Dtd object).

    pike