Skip to content

Commit

Permalink
Update table rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
gamma committed Jan 19, 2023
1 parent 2fc271e commit 61bb963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer.php
Expand Up @@ -499,14 +499,14 @@ function table_close($pos = null) {
*/
function tablethead_open() {
$this->tableColumns = 0;
$this->doc .= DOKU_LF . '|';
$this->doc .= DOKU_LF; // . '|';
}

/**
* Close a table header
*/
function tablethead_close() {
$this->doc .= str_repeat('---|', $this->tableColumns);
$this->doc .= '|' . str_repeat('---|', $this->tableColumns) . DOKU_LF;
}

/**
Expand Down

0 comments on commit 61bb963

Please sign in to comment.