comparison etc/schema/xhtml-link.rnc @ 86361:38f93f3d00a2

Initial merge of nxml
author Mark A. Hershberger <mah@everybody.org>
date Fri, 23 Nov 2007 06:58:00 +0000
parents
children
comparison
equal deleted inserted replaced
86360:aa83d83c27fe 86361:38f93f3d00a2
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*