Sometimes its handy to be able to space data out in a table with a blank row. Currently DokuWiki outputs HTML for the blank row, however some browsers may not display the row as it has no non-whitespace content.
Since this is a matter of presentation (but not markup) the CSS should be adjusted accordingly: The ”empty-cells” CSS keyword is supposed to be used to show/hide those cells.
Or as a “hack”, you could also try this in the table itself:
^Header1^Header2^Header3^Header4^ |field1 | field2 |field3 |field4| || \\ |||| |field1 | field2 |field3 |field4|
| Header1 | Header2 | Header3 | Header4 |
|---|---|---|---|
| field1 | field2 | field3 | field4 |
| |
|||
| field1 | field2 | field3 | field4 |