view etc/schema/xhtml-link.rnc @ 107250:13dafa175b9c

Fix in-buffer completion when after-change-functions modify the buffer. * minibuffer.el (completion--replace): New function. (completion--do-completion): Use it and use relative movement.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sat, 27 Feb 2010 16:21:43 -0500
parents 38f93f3d00a2
children
line wrap: on
line source

# Link Module

link = element link { link.attlist }
link.attlist =
  Common.attrib,
  attribute charset { Charset.datatype }?,
  attribute href { URI.datatype }?,
  attribute hreflang { LanguageCode.datatype }?,
  attribute type { ContentType.datatype }?,
  attribute rel { LinkTypes.datatype }?,
  attribute rev { LinkTypes.datatype }?,
  attribute media { MediaDesc.datatype }?
head.content &= link*