| 1 |
lars |
1 |
<!-- ...................................................................... -->
|
|
|
2 |
<!-- XHTML Hypertext Module .............................................. -->
|
|
|
3 |
<!-- file: xhtml-hypertext-1.mod
|
|
|
4 |
|
|
|
5 |
This is XHTML, a reformulation of HTML as a modular XML application.
|
|
|
6 |
Copyright 1998-2005 W3C (MIT, ERCIM, Keio), All Rights Reserved.
|
|
|
7 |
Revision: $Id: xhtml-hypertext-1.mod,v 1.4 2008/10/08 21:02:30 jules Exp $ SMI
|
|
|
8 |
|
|
|
9 |
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
|
|
|
10 |
|
|
|
11 |
PUBLIC "-//W3C//ELEMENTS XHTML Hypertext 1.0//EN"
|
|
|
12 |
SYSTEM "http://www.w3.org/MarkUp/DTD/xhtml-hypertext-1.mod"
|
|
|
13 |
|
|
|
14 |
Revisions:
|
|
|
15 |
(none)
|
|
|
16 |
....................................................................... -->
|
|
|
17 |
|
|
|
18 |
<!-- Hypertext
|
|
|
19 |
|
|
|
20 |
a
|
|
|
21 |
|
|
|
22 |
This module declares the anchor ('a') element type, which
|
|
|
23 |
defines the source of a hypertext link. The destination
|
|
|
24 |
(or link 'target') is identified via its 'id' attribute
|
|
|
25 |
rather than the 'name' attribute as was used in HTML.
|
|
|
26 |
-->
|
|
|
27 |
|
|
|
28 |
<!-- ............ Anchor Element ............ -->
|
|
|
29 |
|
|
|
30 |
<!ENTITY % a.element "INCLUDE" >
|
|
|
31 |
<![%a.element;[
|
|
|
32 |
<!ENTITY % a.content
|
|
|
33 |
"( #PCDATA | %InlNoAnchor.mix; )*"
|
|
|
34 |
>
|
|
|
35 |
<!ENTITY % a.qname "a" >
|
|
|
36 |
<!ELEMENT %a.qname; %a.content; >
|
|
|
37 |
<!-- end of a.element -->]]>
|
|
|
38 |
|
|
|
39 |
<!ENTITY % a.attlist "INCLUDE" >
|
|
|
40 |
<![%a.attlist;[
|
|
|
41 |
<!ATTLIST %a.qname;
|
|
|
42 |
%Common.attrib;
|
|
|
43 |
href %URI.datatype; #IMPLIED
|
|
|
44 |
charset %Charset.datatype; #IMPLIED
|
|
|
45 |
type %ContentType.datatype; #IMPLIED
|
|
|
46 |
hreflang %LanguageCode.datatype; #IMPLIED
|
|
|
47 |
rel %LinkTypes.datatype; #IMPLIED
|
|
|
48 |
rev %LinkTypes.datatype; #IMPLIED
|
|
|
49 |
accesskey %Character.datatype; #IMPLIED
|
|
|
50 |
tabindex %Number.datatype; #IMPLIED
|
|
|
51 |
>
|
|
|
52 |
<!-- end of a.attlist -->]]>
|
|
|
53 |
|
|
|
54 |
<!-- end of xhtml-hypertext-1.mod -->
|