diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-03-24 11:37:40 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-03-24 11:37:40 +0100 |
commit | 4afeda5d696662387050cb6451eabeaa7445e59b (patch) | |
tree | 48eaf5aa9b9effa2be6874459ffdcc3322b6dbbb /inc/parser/xhtml.php | |
parent | 534aa96ea7c1fa896c952669586ef708aa1d37ac (diff) | |
parent | c2a1d01e2e905ab3d7fa3009aeb140fcefc32f9e (diff) | |
download | rpg-4afeda5d696662387050cb6451eabeaa7445e59b.tar.gz rpg-4afeda5d696662387050cb6451eabeaa7445e59b.tar.bz2 |
Merge pull request #387 from splitbrain/tablethead
Adding <thead> to tables
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r-- | inc/parser/xhtml.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index e3f9a4187..cf36a8175 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -963,6 +963,14 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } } + function tablethead_open(){ + $this->doc .= DOKU_TAB . '<thead>' . DOKU_LF; + } + + function tablethead_close(){ + $this->doc .= DOKU_TAB . '</thead>' . DOKU_LF; + } + function tablerow_open(){ // initialize the cell counter used for classes $this->_counter['cell_counter'] = 0; |