From 6ceb7ceb8c54bd8c53ee562cbb184e3b6476c253 Mon Sep 17 00:00:00 2001 From: Evert Pot Date: Thu, 26 Feb 2015 16:28:15 -0500 Subject: [PATCH] Oops. Needs an extra space here. --- Michelf/Markdown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Michelf/Markdown.php b/Michelf/Markdown.php index 009e39a..efe10c7 100644 --- a/Michelf/Markdown.php +++ b/Michelf/Markdown.php @@ -812,7 +812,7 @@ class Markdown implements MarkdownInterface { $idValue = call_user_func($this->header_id_func, $headerValue); if (!$idValue) return ""; - return 'id="' . $this->encodeAttribute($idValue) . '"'; + return ' id="' . $this->encodeAttribute($idValue) . '"'; }