[
Lists Home |
Date Index |
Thread Index
]
- From: "Pete Beazley" <pete@clearlyonline.com>
- To: <xml-dev@ic.ac.uk>
- Date: Tue, 21 Sep 1999 13:36:07 -0400
> <?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@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@clearlyonline.com
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@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@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|