dbcalstbl.rnc 762 B

1234567891011121314151617181920212223242526
  1. # Definitions specific to the CALS Table Model.
  2. # Reference CALS Table Model
  3. include "calstbl.rnc" {
  4. # Override definition of start
  5. start |= notAllowed
  6. # Add label and role attributes to table and informaltable
  7. bodyatt = label.attrib
  8. # Add common attributes to Table, TGroup, TBody, THead, TFoot, Row,
  9. # EntryTbl, and Entry (and InformalTable element).
  10. secur = common.attrib, tables.role.attrib
  11. # Content model for Table.
  12. tbl.table.mdl =
  13. blockinfo?,
  14. formalobject.title.content,
  15. ndxterm.class*,
  16. textobject*,
  17. (graphic+ | mediaobject+ | tgroup+)
  18. # Allow either objects or inlines; beware of REs between elements.
  19. tbl.entry.mdl = para.char.mix | tabentry.mix
  20. }
  21. common.table.attribs = bodyatt, secur
  22. # end of table.module