newbie-ish DTD question: am i asking too much of XML, or of my brain?

Pete Beazley pete at clearlyonline.com
Tue Sep 21 19:33:44 BST 1999


> <?XML version="1.0" encoding="UTF-8" standalone="no"?>
> <!ELEMENT model (topic* link*)>
> <!ELEMENT topic (topic* link*)>
> <!ELEMENT link>

You need to separate the optional content with the OR connector, | , and
define some sort of content model for link.
Try this:

<?xml version="1.0" ?>
<!DOCTYPE model [
<!ELEMENT model (topic | link)*>
<!ELEMENT topic (topic | link)*>
<!ELEMENT link (#PCDATA)>
]>
<model>
  <link>link stuff</link>
</model>

Pete
--------
Pete Beazley - mailto:pete at clearlyonline.com
ClearlyOnline, Inc.
XML-based Web Sites & XML services
http://www.clearlyonline.com
1-724-942-1912    1-724-941-3698 fax
PGP public key - mailto:pgp.pete at clearlyonline.com


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)





More information about the Xml-dev mailing list