From 2194dd1bdb608c15146a4aa0e29dc93cce66c9b6 Mon Sep 17 00:00:00 2001 From: Cristian Date: Sun, 5 Jan 2014 17:42:41 +0400 Subject: [PATCH] Fix comment --- lib/pico.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pico.php b/lib/pico.php index 42a379d..3eafb17 100644 --- a/lib/pico.php +++ b/lib/pico.php @@ -136,7 +136,7 @@ class Pico { */ protected function parse_content($content) { - $content = preg_replace('#/\*.+?\*/#s', '', $content, 1); // Remove comments and meta + $content = preg_replace('#/\*.+?\*/#s', '', $content, 1); // Remove first comment (with meta) $content = str_replace('%base_url%', $this->base_url(), $content); $content = MarkdownExtra::defaultTransform($content);