mirror of
https://github.com/erusev/parsedown.git
synced 2025-09-02 19:32:35 +02:00
optimize quick paragraph
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user