Fix code formatting

This commit is contained in:
Daniel Rudolf 2016-10-13 19:52:38 +02:00
parent 7b1529fff0
commit a9e1163c85
No known key found for this signature in database
GPG Key ID: A061F02CD8DE4538
1 changed files with 8 additions and 3 deletions

View File

@ -507,11 +507,15 @@ class Parsedown
if (preg_match('/^('.$pattern.'([ ]+|$))(.*)/', $Line['text'], $matches))
{
$contentIndent = strlen($matches[2]);
if ($contentIndent >= 5) {
if ($contentIndent >= 5)
{
$contentIndent -= 1;
$matches[1] = substr($matches[1], 0, -$contentIndent);
$matches[3] = str_repeat(' ', $contentIndent) . $matches[3];
} elseif ($contentIndent === 0) {
}
elseif ($contentIndent === 0)
{
$matches[1] .= ' ';
}
@ -553,7 +557,8 @@ class Parsedown
protected function blockListContinue($Line, array $Block)
{
if (isset($Block['interrupted']) and empty($Block['li']['text'])) {
if (isset($Block['interrupted']) and empty($Block['li']['text']))
{
return null;
}