~ubuntu-branches/ubuntu/trusty/gnome-doc-utils/trusty-proposed

« back to all changes in this revision

Viewing changes to doc/mallard/C/mal_table_tr.page

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-02-23 15:55:38 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: james.westby@ubuntu.com-20100223155538-odq0bbr5tl0p2lpv
Tags: 0.19.5-0ubuntu1
* New upstream release:
  - Updated the Mallard RNG schema (Shaun McCance)
  - Bold userinput inside programlisting (Shaun McCance)
  - Updated translations
* debian/control.in:
  - bump Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<page xmlns="http://projectmallard.org/1.0/"
2
 
      type="topic"
3
 
      id="mal_table_tr">
4
 
 
5
 
<info>
6
 
  <link type="guide" xref="mal_block#tables"/>
7
 
</info>
8
 
 
9
 
<title>Rows and Row Groups</title>
10
 
 
11
 
<synopsis><code mime="application/relax-ng-compact-syntax">
12
 
mal_table_tr = element tr {
13
 
  attribute style { xsd:NMTOKENS } ?,
14
 
  attribute * - (mal:* | local:*) { text } *,
15
 
 
16
 
  <link xref="mal_table_td">mal_table_td</link> *
17
 
}
18
 
mal_table_thead = element thead {
19
 
  attribute style { xsd:NMTOKENS } ?,
20
 
  attribute * - (mal:* | local:*) { text } *,
21
 
 
22
 
  mal_table_tr +
23
 
}
24
 
mal_table_tbody = element tbody {
25
 
  attribute style { xsd:NMTOKENS } ?,
26
 
  attribute * - (mal:* | local:*) { text } *,
27
 
 
28
 
  mal_table_tr +
29
 
}
30
 
mal_table_tfoot = element tfoot {
31
 
  attribute style { xsd:NMTOKENS } ?,
32
 
  attribute * - (mal:* | local:*) { text } *,
33
 
 
34
 
  mal_table_tr +
35
 
}
36
 
</code></synopsis>
37
 
 
38
 
</page>