mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
optimize quick paragraph
This commit is contained in:
parent
0e9202689e
commit
b6c8cac512
@ -205,7 +205,7 @@ class Parsedown
|
||||
|
||||
# Quick Paragraph
|
||||
|
||||
if ($line[0] >= 'A' and $line[0] !== '_' and $line[0] !== '[')
|
||||
if ($line[0] >= 'a' or $line[0] >= 'A' and $line[0] <= 'Z')
|
||||
{
|
||||
goto paragraph; # trust me
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user