1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

improve consistency

This commit is contained in:
Emanuil Rusev 2014-05-12 00:41:00 +03:00
parent 0820d0a607
commit e318e66de5

View File

@ -1052,7 +1052,7 @@ class Parsedown
protected function identifyEscapeSequence($excerpt)
{
if (isset($excerpt[1]) && in_array($excerpt[1], $this->specialCharacters))
if (isset($excerpt[1]) and in_array($excerpt[1], $this->specialCharacters))
{
return array(
'markup' => $excerpt[1],