* lisp/emacs-lisp/package.el (package--with-work-buffer-async):
[emacs.git] / etc / schema / xhtml-link.rnc
blob9d0d6f1cc75652798e94ff7b0892ae1d29d561f4
1 # Link Module
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*