From 5430792687fc3a154e23716c8e17c3e36afaf22d Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Thu, 9 Oct 2014 20:40:34 +0300 Subject: [PATCH] Disable markdown file compilation for now --- system/src/Grav/Common/Page/Page.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index adcc99acd..86f3ceaba 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -1,7 +1,6 @@ name) { - return CompiledMarkdownFile::instance($this->filePath()); + // TODO: use CompiledMarkdownFile after fixing issues in it. + return MarkdownFile::instance($this->filePath()); } return null; }