mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Thematic breaks can't have an indent of more than 3
This commit is contained in:
parent
96d8a1f18c
commit
4e9a0113c3
@ -24,6 +24,10 @@ final class Rule implements Block
|
||||
Block $Block = null,
|
||||
State $State = null
|
||||
) {
|
||||
if ($Context->line()->indent() > 3) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$marker = $Context->line()->text()[0];
|
||||
|
||||
if (\substr_count($Context->line()->text(), $marker) >= 3 and \chop($Context->line()->text(), " $marker") === '') {
|
||||
|
@ -2,4 +2,6 @@
|
||||
<hr />
|
||||
<hr />
|
||||
<hr />
|
||||
<hr />
|
||||
<hr />
|
||||
<p>foo
|
||||
***</p>
|
@ -6,4 +6,7 @@
|
||||
|
||||
***
|
||||
|
||||
___
|
||||
___
|
||||
|
||||
foo
|
||||
***
|
Loading…
Reference in New Issue
Block a user