Skip to content
Snippets Groups Projects
Commit 627fc03f authored by Guy Brand's avatar Guy Brand
Browse files

Fix for the FS#1833 parser error

parent 5f0edced
No related branches found
No related tags found
No related merge requests found
...@@ -454,8 +454,8 @@ class Doku_Parser_Mode_table extends Doku_Parser_Mode { ...@@ -454,8 +454,8 @@ class Doku_Parser_Mode_table extends Doku_Parser_Mode {
} }
function connectTo($mode) { function connectTo($mode) {
$this->Lexer->addEntryPattern('\n\^',$mode,'table'); $this->Lexer->addEntryPattern('\s*\n\^',$mode,'table');
$this->Lexer->addEntryPattern('\n\|',$mode,'table'); $this->Lexer->addEntryPattern('\s*\n\|',$mode,'table');
} }
function postConnect() { function postConnect() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment