annotate etc/schema/xhtml-link.rnc @ 111686:e8049570c647
* lisp/eshell/: Use with-silent-modifications.
* lisp/eshell/esh-cmd.el (eshell-parse-command):
* lisp/eshell/esh-arg.el (eshell-parse-arguments):
* lisp/eshell/em-script.el (eshell-source-file):
Use with-silent-modifications.
author |
Stefan Monnier <monnier@iro.umontreal.ca> |
date |
Tue, 23 Nov 2010 12:36:15 -0500 |
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*
|