Merge pull request #171 from scarwu/master

identifyEscapeSequence() needs Array check
This commit is contained in:
Emanuil Rusev 2014-05-11 20:57:05 +03:00
commit d85a233611
1 changed files with 1 additions and 1 deletions

View File

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