Help/Tables

De Rich Annotator System
Révision datée du 26 octobre 2020 à 10:02 par Marton Horvath (discussion | contributions) (Page créée avec « '''Tables''' may be created. As a general rule, it is best to avoid using a table unless you need one. Table markup often complicates page editing. ====Wiki table markup… »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

Tables may be created. As a general rule, it is best to avoid using a table unless you need one. Table markup often complicates page editing.

Wiki table markup summary

{| table start, required
|+ table caption, optional; only between table start and table row
|- table row, optional on first row (first row is assumed)
! table header cell, optional. Consecutive table header cells may be added on same line separated by double marks ( !! ) or start on new lines, each with its own single mark ( ! ).
| table data cell, optional. Consecutive table data cells may be added on same line separated by double marks ( || ) or start on new lines, each with its own single mark ( | ).
|} table end, required
  • The above marks must start on a new line except the double || and !! for optionally adding consecutive cells to a line. However, blank spaces at the beginning of a line are ignored.
  • HTML attributes. Each mark, except table end, optionally accepts one or more HTML attributes. Attributes must be on the same line as the mark. Separate attributes from each other with a single space.
    • Cells and caption (| or ||, ! or !!, and |+) hold content. So separate any attributes from content with a single pipe (|). Cell content may follow on same line or on following lines.
    • Table and row marks ({| and |-) do not directly hold content. Do not add pipe (|) after their optional attributes. If you erroneously add a pipe after attributes for the table mark or row mark the parser will delete it and your final attribute if it was touching the erroneous pipe!
  • Content may (a) follow its cell mark on the same line after any optional HTML attributes or (b) on lines below the cell mark. Content that uses wiki markup that itself needs to start on a new line, such as lists, headings, or nested tables, must be on its own new line.
    • Pipe character as content. To insert a pipe (|) character into a table, use the <nowiki>|</nowiki> escaping markup.

Basics

The following table lacks borders and good spacing but shows the simplest wiki markup table structure.

You type You get
{|
| Orange
| Apple
|-
| Bread
| Pie
|-
| Butter
| Ice cream
|}
Orange Apple
Bread Pie
Butter Ice cream



Back to contents