diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2010-06-27 12:53:18 +0100 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2010-06-27 12:53:18 +0100 |
commit | 13ebcbe5742a0b5014e3c70a0d521332cbdcdf79 (patch) | |
tree | 317cf6ca75ff73886dd4aaeab6787cabba8687b8 | |
parent | 1a93c67cff4a7b3e30186141cd17f4ba6e113e84 (diff) | |
download | rpg-13ebcbe5742a0b5014e3c70a0d521332cbdcdf79.tar.gz rpg-13ebcbe5742a0b5014e3c70a0d521332cbdcdf79.tar.bz2 |
FS#1949
-rw-r--r-- | inc/parser/parser.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php index 48facd6b5..435b8aa46 100644 --- a/inc/parser/parser.php +++ b/inc/parser/parser.php @@ -413,8 +413,8 @@ class Doku_Parser_Mode_listblock extends Doku_Parser_Mode { } function connectTo($mode) { - $this->Lexer->addEntryPattern('\n {2,}[\-\*]',$mode,'listblock'); - $this->Lexer->addEntryPattern('\n\t{1,}[\-\*]',$mode,'listblock'); + $this->Lexer->addEntryPattern('[ \t]*\n {2,}[\-\*]',$mode,'listblock'); + $this->Lexer->addEntryPattern('[ \t]*\n\t{1,}[\-\*]',$mode,'listblock'); $this->Lexer->addPattern('\n {2,}[\-\*]','listblock'); $this->Lexer->addPattern('\n\t{1,}[\-\*]','listblock'); |