From 5ddbae91d249d3b320401c4b918e2cb4820b6218 Mon Sep 17 00:00:00 2001 From: David Bailey Date: Mon, 24 Feb 2025 22:42:49 +0100 Subject: [PATCH] fix(templates): :bug: fix issue with Dergdown templates not being closed properly --- www/src/dergdown.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/src/dergdown.php b/www/src/dergdown.php index 1f8dbcd..c720d01 100644 --- a/www/src/dergdown.php +++ b/www/src/dergdown.php @@ -78,7 +78,8 @@ class Dergdown extends ParsedownExtra } return array( - 'markup' => $render_output + 'markup' => $render_output, + 'interrupted' => true ); }