annotate etc/schema/xhtml-link.rnc @ 106119:471612501920
* mail/sendmail.el (mail-yank-prefix): Change default to "> ".
(mail-signature): Change default to t.
(mail-from-style): Deprecate `system-default' value.
(mail-insert-from-field): For default value of mail-from-style,
default to `angles' unless `angles' needs quoting and `parens'
does not.
(mail-citation-prefix-regexp): Use citation regexp from
message-mode.
author |
Chong Yidong <cyd@stupidchicken.com> |
date |
Thu, 19 Nov 2009 16:48:30 +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*
|