From ada39109e46659d9e8f0ef4539264a7582797093 Mon Sep 17 00:00:00 2001 From: Emanuil Rusev Date: Thu, 15 Jan 2015 22:04:02 +0200 Subject: [PATCH] resolve #189 --- Parsedown.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Parsedown.php b/Parsedown.php index 17f54e4..75b6762 100755 --- a/Parsedown.php +++ b/Parsedown.php @@ -558,6 +558,11 @@ class Parsedown return $Block; } + if ($Line['text'][0] === '[' and $this->blockReference($Line)) + { + return $Block; + } + if ( ! isset($Block['interrupted'])) { $text = preg_replace('/^[ ]{0,4}/', '', $Line['body']);