diff options
| author | Jess Robinson <[email protected]> | 2012-04-23 12:15:00 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2012-04-25 13:54:17 -0700 |
| commit | bb2df42ddaa64ab5116f3ffc5fe5810cccf6ce35 (patch) | |
| tree | 2d81dc511257359569396f5a06a8c98f1457cc30 /tests/tables.pseudopod | |
| parent | fae214e328bdf48d784aba1a24d74526784bb33c (diff) | |
Merges and final tests (pseudopod)pseudopod
Diffstat (limited to 'tests/tables.pseudopod')
| -rw-r--r-- | tests/tables.pseudopod | 297 |
1 files changed, 297 insertions, 0 deletions
diff --git a/tests/tables.pseudopod b/tests/tables.pseudopod new file mode 100644 index 000000000..f5e943974 --- /dev/null +++ b/tests/tables.pseudopod @@ -0,0 +1,297 @@ +=encoding utf8 + +Simple table with caption: + +=begin table Demonstration of simple table syntax. + +=headrow + +=row + +=cell Right + +=cell Left + +=cell Center + +=cell Default + +=bodyrows + +=row + +=cell 12 + +=cell 12 + +=cell 12 + +=cell 12 + +=row + +=cell 123 + +=cell 123 + +=cell 123 + +=cell 123 + +=row + +=cell 1 + +=cell 1 + +=cell 1 + +=cell 1 + +=end table + +Simple table without caption: + +=begin table + +=headrow + +=row + +=cell Right + +=cell Left + +=cell Center + +=cell Default + +=bodyrows + +=row + +=cell 12 + +=cell 12 + +=cell 12 + +=cell 12 + +=row + +=cell 123 + +=cell 123 + +=cell 123 + +=cell 123 + +=row + +=cell 1 + +=cell 1 + +=cell 1 + +=cell 1 + +=end table + +Simple table indented two spaces: + +=begin table Demonstration of simple table syntax. + +=headrow + +=row + +=cell Right + +=cell Left + +=cell Center + +=cell Default + +=bodyrows + +=row + +=cell 12 + +=cell 12 + +=cell 12 + +=cell 12 + +=row + +=cell 123 + +=cell 123 + +=cell 123 + +=cell 123 + +=row + +=cell 1 + +=cell 1 + +=cell 1 + +=cell 1 + +=end table + +Multiline table with caption: + +=begin table Here's the caption. It may span multiple lines. + +=headrow + +=row + +=cell Centered Header + +=cell Left Aligned + +=cell Right Aligned + +=cell Default aligned + +=bodyrows + +=row + +=cell First + +=cell row + +=cell 12.0 + +=cell Example of a row that spans multiple lines. + +=row + +=cell Second + +=cell row + +=cell 5.0 + +=cell Here's another one. Note the blank line between rows. + +=end table + +Multiline table without caption: + +=begin table + +=headrow + +=row + +=cell Centered Header + +=cell Left Aligned + +=cell Right Aligned + +=cell Default aligned + +=bodyrows + +=row + +=cell First + +=cell row + +=cell 12.0 + +=cell Example of a row that spans multiple lines. + +=row + +=cell Second + +=cell row + +=cell 5.0 + +=cell Here's another one. Note the blank line between rows. + +=end table + +Table without column headers: + +=begin table + +=bodyrows + +=row + +=cell 12 + +=cell 12 + +=cell 12 + +=cell 12 + +=row + +=cell 123 + +=cell 123 + +=cell 123 + +=cell 123 + +=row + +=cell 1 + +=cell 1 + +=cell 1 + +=cell 1 + +=end table + +Multiline table without column headers: + +=begin table + +=bodyrows + +=row + +=cell First + +=cell row + +=cell 12.0 + +=cell Example of a row that spans multiple lines. + +=row + +=cell Second + +=cell row + +=cell 5.0 + +=cell Here's another one. Note the blank line between rows. + +=end table |
