annotate etc/schema/xhtml-link.rnc @ 97350:f0689cd563e3
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1372
author |
Miles Bader <miles@gnu.org> |
date |
Thu, 07 Aug 2008 07:18:07 +0000 |
parents |
38f93f3d00a2 |
children |
|
rev |
line source |
86361
|
1 # Link Module
|
|
2
|
|
3 link = element link { link.attlist }
|
|
4 link.attlist =
|
|
5 Common.attrib,
|
|
6 attribute charset { Charset.datatype }?,
|
|
7 attribute href { URI.datatype }?,
|
|
8 attribute hreflang { LanguageCode.datatype }?,
|
|
9 attribute type { ContentType.datatype }?,
|
|
10 attribute rel { LinkTypes.datatype }?,
|
|
11 attribute rev { LinkTypes.datatype }?,
|
|
12 attribute media { MediaDesc.datatype }?
|
|
13 head.content &= link*
|