xhtml-struct.rnc 513 B

123456789101112131415
  1. # Structure Module
  2. start = html
  3. title = element title { title.attlist, text }
  4. title.attlist = I18n.attrib
  5. head = element head { head.attlist, head.content }
  6. head.attlist = I18n.attrib, profile.attlist
  7. head.content = title
  8. profile.attlist = attribute profile { URI.datatype }?
  9. body = element body { body.attlist, Block.model }
  10. body.attlist = Common.attrib
  11. html = element html { html.attlist, head, body }
  12. html.attlist = XHTML.version.attrib, I18n.attrib
  13. XHTML.version.attrib = attribute version { FPI.datatype }?