diff options
author | gerald <gerald@localhost> | 2001-05-10 08:41:58 +0000 |
---|---|---|
committer | gerald <gerald@localhost> | 2001-05-10 08:41:58 +0000 |
commit | 5b11a9e287819cbdcbc670f16a1b5fc5f0c7d0f9 (patch) | |
tree | 5833f7b35e4476ea5753380d9b3456133f9e59ea /htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-list-1.mod | |
parent | 9df1ad4656111cf013830dc6505abc5526a38b56 (diff) | |
download | markup-validator-5b11a9e287819cbdcbc670f16a1b5fc5f0c7d0f9.zip markup-validator-5b11a9e287819cbdcbc670f16a1b5fc5f0c7d0f9.tar.gz markup-validator-5b11a9e287819cbdcbc670f16a1b5fc5f0c7d0f9.tar.bz2 |
copied here from http://www.w3.org/TR/2000/REC-xhtml-basic-20001219/
Diffstat (limited to 'htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-list-1.mod')
-rw-r--r-- | htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-list-1.mod | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-list-1.mod b/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-list-1.mod new file mode 100644 index 0000000..e91fe19 --- /dev/null +++ b/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-list-1.mod @@ -0,0 +1,129 @@ +<!-- ...................................................................... --> +<!-- XHTML Lists Module .................................................. --> +<!-- file: xhtml-list-1.mod + + This is XHTML, a reformulation of HTML as a modular XML application. + Copyright 1998-2000 W3C (MIT, INRIA, Keio), All Rights Reserved. + Revision: $Id: xhtml-list-1.mod,v 1.1 2001-05-10 08:41:58 gerald Exp $ SMI + + This DTD module is identified by the PUBLIC and SYSTEM identifiers: + + PUBLIC "-//W3C//ELEMENTS XHTML Lists 1.0//EN" + SYSTEM "http://www.w3.org/TR/xhtml-modulatization/DTD/xhtml-list-1.mod" + + Revisions: + (none) + ....................................................................... --> + +<!-- Lists + + dl, dt, dd, ol, ul, li + + This module declares the list-oriented element types + and their attributes. +--> + +<!ENTITY % dl.qname "dl" > +<!ENTITY % dt.qname "dt" > +<!ENTITY % dd.qname "dd" > +<!ENTITY % ol.qname "ol" > +<!ENTITY % ul.qname "ul" > +<!ENTITY % li.qname "li" > + +<!-- dl: Definition List ............................... --> + +<!ENTITY % dl.element "INCLUDE" > +<![%dl.element;[ +<!ENTITY % dl.content "( %dt.qname; | %dd.qname; )+" > +<!ELEMENT %dl.qname; %dl.content; > +<!-- end of dl.element -->]]> + +<!ENTITY % dl.attlist "INCLUDE" > +<![%dl.attlist;[ +<!ATTLIST %dl.qname; + %Common.attrib; +> +<!-- end of dl.attlist -->]]> + +<!-- dt: Definition Term ............................... --> + +<!ENTITY % dt.element "INCLUDE" > +<![%dt.element;[ +<!ENTITY % dt.content + "( #PCDATA | %Inline.mix; )*" +> +<!ELEMENT %dt.qname; %dt.content; > +<!-- end of dt.element -->]]> + +<!ENTITY % dt.attlist "INCLUDE" > +<![%dt.attlist;[ +<!ATTLIST %dt.qname; + %Common.attrib; +> +<!-- end of dt.attlist -->]]> + +<!-- dd: Definition Description ........................ --> + +<!ENTITY % dd.element "INCLUDE" > +<![%dd.element;[ +<!ENTITY % dd.content + "( #PCDATA | %Flow.mix; )*" +> +<!ELEMENT %dd.qname; %dd.content; > +<!-- end of dd.element -->]]> + +<!ENTITY % dd.attlist "INCLUDE" > +<![%dd.attlist;[ +<!ATTLIST %dd.qname; + %Common.attrib; +> +<!-- end of dd.attlist -->]]> + +<!-- ol: Ordered List (numbered styles) ................ --> + +<!ENTITY % ol.element "INCLUDE" > +<![%ol.element;[ +<!ENTITY % ol.content "( %li.qname; )+" > +<!ELEMENT %ol.qname; %ol.content; > +<!-- end of ol.element -->]]> + +<!ENTITY % ol.attlist "INCLUDE" > +<![%ol.attlist;[ +<!ATTLIST %ol.qname; + %Common.attrib; +> +<!-- end of ol.attlist -->]]> + +<!-- ul: Unordered List (bullet styles) ................ --> + +<!ENTITY % ul.element "INCLUDE" > +<![%ul.element;[ +<!ENTITY % ul.content "( %li.qname; )+" > +<!ELEMENT %ul.qname; %ul.content; > +<!-- end of ul.element -->]]> + +<!ENTITY % ul.attlist "INCLUDE" > +<![%ul.attlist;[ +<!ATTLIST %ul.qname; + %Common.attrib; +> +<!-- end of ul.attlist -->]]> + +<!-- li: List Item ..................................... --> + +<!ENTITY % li.element "INCLUDE" > +<![%li.element;[ +<!ENTITY % li.content + "( #PCDATA | %Flow.mix; )*" +> +<!ELEMENT %li.qname; %li.content; > +<!-- end of li.element -->]]> + +<!ENTITY % li.attlist "INCLUDE" > +<![%li.attlist;[ +<!ATTLIST %li.qname; + %Common.attrib; +> +<!-- end of li.attlist -->]]> + +<!-- end of xhtml-list-1.mod --> |