diff options
author | EdePopede <EdePopede@web> | 2015-02-11 12:44:27 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2015-02-11 12:44:27 -0400 |
commit | b6a9e66cab037cee382a4e164b417133f5f8f140 (patch) | |
tree | 4939799d115fe4cb6a7f14d9eefecbb8d7ceec82 /doc/forum | |
parent | 10ee7ee614fd1e3ec44bde64be144ee8c6a6c24b (diff) | |
download | ikiwiki-b6a9e66cab037cee382a4e164b417133f5f8f140.tar ikiwiki-b6a9e66cab037cee382a4e164b417133f5f8f140.tar.gz |
created: observation + samples
Diffstat (limited to 'doc/forum')
-rw-r--r-- | doc/forum/tables_with_1_cell_in_1st_row.mdwn | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/doc/forum/tables_with_1_cell_in_1st_row.mdwn b/doc/forum/tables_with_1_cell_in_1st_row.mdwn new file mode 100644 index 000000000..95b076da5 --- /dev/null +++ b/doc/forum/tables_with_1_cell_in_1st_row.mdwn @@ -0,0 +1,120 @@ +Just found a bug while building a table with 1st column made of the lines output by <tt>ls -1</tt>. That means, in the beginning there's only 1 cell in each row, and if adding additional columns in other rows, the delimiter ('|') is taken as-is. No difference if the table has a header line or not, or if that one cell is following a '|'. + +Examples: + + +### 2 cells each + +table with header + +[[!table data=""" +1 | 2 +one | two +a |b +"""]] + +table without header + +[[!table header="no" data=""" +1 | 2 +one | two +a |b +"""]] + +### 2 cells, 3 later + + +table with header + +[[!table data=""" +1 | 2 +one | two +a |b | c +"""]] + +table without header + +[[!table header="no" data=""" +1 | 2 +one | two +a |b | c +"""]] + +### 1 cell, 3 later + + +table with header + +[[!table data=""" +1 +one | two +a |b | c +"""]] + +table without header + +[[!table header="no" data=""" +1 +one | two +a |b | c +"""]] + +### 1 cell (ended by delimiter), 3 later + + +table with header + +[[!table data=""" +1| +one | two +a |b | c +"""]] + +table without header + +[[!table header="no" data=""" +1| +one | two +a |b | c +"""]] + +### 1 cell (line starts with delimiter), 3 later + + +table with header + +[[!table data=""" +|1 +one | two +a |b | c +"""]] + +table without header + +[[!table header="no" data=""" +|1 +one | two +a |b | c +"""]] + +### 1 cell (line starts with SPC + delimiter), 3 later + + +table with header + +[[!table data=""" + |1 +one | two +a |b | c +"""]] + +table without header + +[[!table header="no" data=""" + |1 +one | two +a |b | c +"""]] + + + -- EdePopede (poor man's signature) |