1
0
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:
Emanuil Rusev
2013-11-07 22:46:01 +02:00
parent 0e9202689e
commit b6c8cac512

View File

@@ -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
}