diff options
author | Anika Henke <anika@selfthinker.org> | 2010-06-27 13:58:29 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2010-06-27 13:58:29 +0100 |
commit | bf815306862aa34ee3bf304147a862efc52f9b63 (patch) | |
tree | ac4d12b386937105d150b0c76b41f8ed1ff0837c /inc/parser/parser.php | |
parent | ef362bb863eb95d3968a3a1df35562914a1bbdef (diff) | |
parent | e6a6dbfe6cfcfaf3fb0992350ea7769faa762116 (diff) | |
download | rpg-bf815306862aa34ee3bf304147a862efc52f9b63.tar.gz rpg-bf815306862aa34ee3bf304147a862efc52f9b63.tar.bz2 |
Merge branch 'master' of github.com:splitbrain/dokuwiki
Diffstat (limited to 'inc/parser/parser.php')
-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'); |