From db06d06789f39bb3f895c2911e3a4cd33f28c3d1 Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Fri, 7 Jun 2024 08:45:58 +0200 Subject: [PATCH] Remove unnecessary option from Markdown converter The 'max_nesting_level' option was removed from the Markdown converter configuration in order to simplify and optimize the code. --- app/Support/Twig/General.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Support/Twig/General.php b/app/Support/Twig/General.php index 4186ef6f15..bc73df316a 100644 --- a/app/Support/Twig/General.php +++ b/app/Support/Twig/General.php @@ -186,7 +186,6 @@ class General extends AbstractExtension $converter = new GithubFlavoredMarkdownConverter( [ 'allow_unsafe_links' => false, - 'max_nesting_level' => 3, 'html_input' => 'escape', ] );