1<!-- ...................................................................... -->
2<!-- XHTML Inline Structural Module  ...................................... -->
3<!-- file: xhtml-inlstruct-1.mod
4
5     This is XHTML, a reformulation of HTML as a modular XML application.
6     Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
7     Revision: $Id: xhtml-inlstruct-1.mod,v 4.0 2001/04/02 22:42:49 altheim Exp $ SMI
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11       PUBLIC "-//W3C//ELEMENTS XHTML Inline Structural 1.0//EN"
12       SYSTEM "http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-inlstruct-1.mod"
13
14     Revisions:
15     (none)
16     ....................................................................... -->
17
18<!-- Inline Structural
19
20        br, span
21
22     This module declares the elements and their attributes
23     used to support inline-level structural markup.
24-->
25
26<!-- br: forced line break ............................. -->
27
28<!ENTITY % br.element  "INCLUDE" >
29<![%br.element;[
30
31<!ENTITY % br.content  "EMPTY" >
32<!ENTITY % br.qname  "br" >
33<!ELEMENT %br.qname;  %br.content; >
34
35<!-- end of br.element -->]]>
36
37<!ENTITY % br.attlist  "INCLUDE" >
38<![%br.attlist;[
39<!ATTLIST %br.qname;
40      %Core.attrib;
41>
42<!-- end of br.attlist -->]]>
43
44<!-- span: generic inline container .................... -->
45
46<!ENTITY % span.element  "INCLUDE" >
47<![%span.element;[
48<!ENTITY % span.content
49     "( #PCDATA | %Inline.mix; )*"
50>
51<!ENTITY % span.qname  "span" >
52<!ELEMENT %span.qname;  %span.content; >
53<!-- end of span.element -->]]>
54
55<!ENTITY % span.attlist  "INCLUDE" >
56<![%span.attlist;[
57<!ATTLIST %span.qname;
58      %Common.attrib;
59>
60<!-- end of span.attlist -->]]>
61
62<!-- end of xhtml-inlstruct-1.mod -->
63