From 353704d8821f2de482fba643903ecea5b1a5be75 Mon Sep 17 00:00:00 2001 From: Michel Fortin Date: Thu, 28 Nov 2013 21:22:44 -0500 Subject: [PATCH] Removed repeated semicolon. Fixes #124. --- Michelf/Markdown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Michelf/Markdown.php b/Michelf/Markdown.php index a1a0abc..3af20b5 100644 --- a/Michelf/Markdown.php +++ b/Michelf/Markdown.php @@ -1269,7 +1269,7 @@ class Markdown implements MarkdownInterface { # Ampersand-encoding based entirely on Nat Irons's Amputator # MT plugin: $text = preg_replace('/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/', - '&', $text);; + '&', $text); } # Encode remaining <'s $text = str_replace('<', '<', $text);