summaryrefslogtreecommitdiff
path: root/inc/parser/parser.php
diff options
context:
space:
mode:
authorAndreas Gohr <gohr@cosmocode.de>2005-11-03 17:26:30 +0100
committerAndreas Gohr <gohr@cosmocode.de>2005-11-03 17:26:30 +0100
commit9ab75d9e5b40b2a68d2904f6f190a30326f0378a (patch)
tree8f79976603ec8f5f359133b7ca5c0517ecf86b7c /inc/parser/parser.php
parentba618d0d83f3a770e741e1f1950dea818de6ab46 (diff)
downloadrpg-9ab75d9e5b40b2a68d2904f6f190a30326f0378a.tar.gz
rpg-9ab75d9e5b40b2a68d2904f6f190a30326f0378a.tar.bz2
Table Syntax fixes #280 #591
darcs-hash:20051103162630-6e07b-21520008f556114f8273307e7d6d33795488b1d2.gz
Diffstat (limited to 'inc/parser/parser.php')
-rw-r--r--inc/parser/parser.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php
index 9cc257c02..7a3342fbf 100644
--- a/inc/parser/parser.php
+++ b/inc/parser/parser.php
@@ -464,7 +464,8 @@ class Doku_Parser_Mode_table extends Doku_Parser_Mode {
function postConnect() {
$this->Lexer->addPattern('\n\^','table');
$this->Lexer->addPattern('\n\|','table');
- $this->Lexer->addPattern(' {2,}','table');
+ #$this->Lexer->addPattern(' {2,}','table');
+ $this->Lexer->addPattern('[\t ]+','table');
$this->Lexer->addPattern('\^','table');
$this->Lexer->addPattern('\|','table');
$this->Lexer->addExitPattern('\n','table');