mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Fix strange formatting
This commit is contained in:
parent
48c0c34470
commit
aab56cf8cc
@ -47,12 +47,10 @@ final class BlockQuote implements ContinuableBlock
|
|||||||
$recoveredSpaces = Line::tabShortage(2, $Context->line()->indentOffset() + $Context->line()->indent());
|
$recoveredSpaces = Line::tabShortage(2, $Context->line()->indentOffset() + $Context->line()->indent());
|
||||||
}
|
}
|
||||||
|
|
||||||
return new self(
|
return new self(Lines::fromTextLines(
|
||||||
Lines::fromTextLines(
|
|
||||||
\str_repeat(' ', $recoveredSpaces) . $matches[2],
|
\str_repeat(' ', $recoveredSpaces) . $matches[2],
|
||||||
$indentOffset
|
$indentOffset
|
||||||
)
|
));
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user