view etc/schema/xhtml-btable.rnc @ 110565:f567b340d004

Merge changes made in Gnus trunk. gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook. gnus-group.el: Remove useless gnus-group-icon-cache. gnus-group.el: Remove useless gnus-ephemeral-group-server. gnus-picon.el: Remove useless gnus-picon-setup-p. gnus-sum.el: Remove useless gnus-newsgroup-none-id. gnus-uu.el: Remove gnus-uu-shar-file-name. gnus.el: Remove useless gnus-use-generic-from. gnus.el: Remove obsolete variable gnus-topic-indentation. mml1991.el: Remove useless mml1991-verbose. mml2015.el: Remove mc-default-scheme and mc-schemes useless variables. nnheader.el: Remove useless variables news-reply-yank-message-id and news-reply-yank-from. rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function variable.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Sat, 25 Sep 2010 13:28:07 +0000
parents 309bef8b751c
children
line wrap: on
line source

# Basic Tables Module

table = element table { table.attlist, caption?, tr+ }
table.attlist =
  Common.attrib,
  attribute summary { Text.datatype }?
caption = element caption { caption.attlist, Inline.model }
caption.attlist = Common.attrib
tr = element tr { tr.attlist, (th | td)+ }
tr.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib
th = element th { th.attlist, Flow.model }
th.attlist = Cell.attrib
td = element td { td.attlist, Flow.model }
td.attlist = Cell.attrib
Cell.attrib =
  Common.attrib,
  attribute abbr { Text.datatype }?,
  attribute axis { text }?,
  attribute headers { IDREFS.datatype }?,
  scope.attrib,
  attribute rowspan { Number.datatype }?,
  attribute colspan { Number.datatype }?,
  CellHAlign.attrib,
  CellVAlign.attrib
CellHAlign.attrib = attribute align { "left" | "center" | "right" }?
CellVAlign.attrib = attribute valign { "top" | "middle" | "bottom" }?
scope.attrib = attribute scope { "row" | "col" }?
Block.class |= table