From 809ab99c9bf00fa8cba2ba117fd318847ec5471b Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Wed, 5 Jun 2024 18:02:08 -0700 Subject: [PATCH] allow images for markdown --- inc/functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index be1eb73c..c5b256ec 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -2820,7 +2820,6 @@ function purify_html($s) { function markdown($s) { $pd = new Parsedown(); $pd->setMarkupEscaped(true); - $pd->setimagesEnabled(false); return $pd->text($s); }