From e318e66de569f4617be5329d8b3236e542a03655 Mon Sep 17 00:00:00 2001 From: Emanuil Rusev Date: Mon, 12 May 2014 00:41:00 +0300 Subject: [PATCH] improve consistency --- Parsedown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parsedown.php b/Parsedown.php index c422078..afff817 100755 --- a/Parsedown.php +++ b/Parsedown.php @@ -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],