annotate etc/schema/xhtml-link.rnc @ 98680:0cc86df465ef
(Frame-Local Variables): New section.
(Buffer-Local Variables): Add an xref to it.
(Intro to Buffer-Local, Creating Buffer-Local): A variable cannot have both
frame-local and buffer-local binding.
author |
Eli Zaretskii <eliz@gnu.org> |
date |
Mon, 13 Oct 2008 10:38:43 +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*
|