diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-02-23 12:09:16 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-02-23 12:09:16 +0100 |
commit | d30d6d6f01f0595d36cd15542d58b89cf8680ac0 (patch) | |
tree | 2860d9e80a7034be61b9bdd32070bab7e322825c /inc/parser/renderer.php | |
parent | 6b25bf2a96e0297108751657c5c605243a06f1a2 (diff) | |
parent | 5a93f8690b91ddfa9a37a081f72d245833b4aefa (diff) | |
download | rpg-d30d6d6f01f0595d36cd15542d58b89cf8680ac0.tar.gz rpg-d30d6d6f01f0595d36cd15542d58b89cf8680ac0.tar.bz2 |
Merge pull request #1048 from splitbrain/add-tbody
Add missing tbody to renderer
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r-- | inc/parser/renderer.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/inc/parser/renderer.php b/inc/parser/renderer.php index e1d28267a..35bdd0e3f 100644 --- a/inc/parser/renderer.php +++ b/inc/parser/renderer.php @@ -708,6 +708,18 @@ class Doku_Renderer extends DokuWiki_Plugin { } /** + * Open a table body + */ + function tabletbody_open() { + } + + /** + * Close a table body + */ + function tabletbody_close() { + } + + /** * Open a table row */ function tablerow_open() { |