From 1cd4dccefd892a5fe26bd08c1e8f0a0ac8810568 Mon Sep 17 00:00:00 2001 From: Michel Fortin Date: Sat, 7 Jun 2008 10:11:16 -0400 Subject: [PATCH] Fixed small error in emphasis parser. --- markdown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown.php b/markdown.php index 36fca2a..475a312 100644 --- a/markdown.php +++ b/markdown.php @@ -1231,7 +1231,7 @@ class Markdown_Parser { $span = $this->runSpanGamut($span); $span = "$span"; $text_stack[0] .= $this->hashPart($span); - $strong = ''; + $em = ''; } else { $text_stack[0] .= $token; }