From e907cc21fb9632fdf02b6751d741322b8b369fd3 Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 31 May 2018 16:59:39 +0300 Subject: [PATCH] Content: method processContent() will run processMarkdown() method first then only processShortcodes --- flextype/Content.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flextype/Content.php b/flextype/Content.php index 35d0d01d..6ff9e9d6 100755 --- a/flextype/Content.php +++ b/flextype/Content.php @@ -462,9 +462,8 @@ class Content */ public static function processContent(string $content) : string { - $content = Content::processShortcodes($content); $content = Content::processMarkdown($content); - + $content = Content::processShortcodes($content); return $content; }