diff options
Diffstat (limited to 'inc/parser/parser.php')
-rw-r--r-- | inc/parser/parser.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php index fb10d5a05..f35a0b0dc 100644 --- a/inc/parser/parser.php +++ b/inc/parser/parser.php @@ -338,7 +338,8 @@ class Doku_Parser_Mode_eol extends Doku_Parser_Mode { if ( in_array($mode, $badModes) ) { return; } - // see FS#1652, pattern extended to swallow preceding whitespace to avoid issues with lines that only contain whitespace + // see FS#1652, pattern extended to swallow preceding whitespace to avoid + // issues with lines that only contain whitespace $this->Lexer->addSpecialPattern('(?:^[ \t]*)?\n',$mode,'eol'); } |