xhtml-hypertext.rnc 479 B

1234567891011121314151617
  1. # Hypertext Module
  2. # Depends on text module.
  3. a = element a { a.attlist, Inline.model }
  4. a.attlist =
  5. Common.attrib,
  6. attribute href { URI.datatype }?,
  7. attribute charset { Charset.datatype }?,
  8. attribute type { ContentType.datatype }?,
  9. attribute hreflang { LanguageCode.datatype }?,
  10. attribute rel { LinkTypes.datatype }?,
  11. attribute rev { LinkTypes.datatype }?,
  12. attribute accesskey { Character.datatype }?,
  13. attribute tabindex { Number.datatype }?
  14. Inline.class |= a