summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
authorAdrian Lang <lang@cosmocode.de>2009-11-19 15:06:19 +0100
committerAdrian Lang <lang@cosmocode.de>2010-01-19 16:41:12 +0100
commit07c2b1c7ce9255456bf19c45cf9d34452cec2af1 (patch)
treed82743e5711fdc2713530f4d09c4a01a293ce62e /inc/parser/xhtml.php
parent7c4635c4cfa34ef378423e198f9e78548cce62f0 (diff)
downloadrpg-07c2b1c7ce9255456bf19c45cf9d34452cec2af1.tar.gz
rpg-07c2b1c7ce9255456bf19c45cf9d34452cec2af1.tar.bz2
Add TABLE range marker for table editing
darcs-hash:20091119140619-e4919-15efddc768526a6c1f6472f83ede17019144ffa3.gz
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r--inc/parser/xhtml.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 20acf4281..4e848ec1d 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -851,8 +851,9 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
$this->doc .= '<table class="inline">'.DOKU_LF;
}
- function table_close(){
+ function table_close($begin, $end){
$this->doc .= '</table>'.DOKU_LF;
+ $this->doc .= '<!-- TABLE ['. $begin .'-'.$end.'] -->';
}
function tablerow_open(){