parse_block_elements doesn't have to use ltrim on lines with no indentation

This commit is contained in:
Emanuil Rusev 2013-11-07 22:48:15 +02:00
parent b6c8cac512
commit 379cbf34b3
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ class Parsedown
# ~
$pure_line = ltrim($line);
$pure_line = $line[0] !== ' ' ? $line : ltrim($line);
# Link Reference