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.
This commit is contained in:
Jeroen De Meerleer 2024-06-07 08:45:58 +02:00
parent a28b990cd1
commit db06d06789
No known key found for this signature in database
GPG Key ID: 28CCCB8F62BFADD6

View File

@ -186,7 +186,6 @@ class General extends AbstractExtension
$converter = new GithubFlavoredMarkdownConverter(
[
'allow_unsafe_links' => false,
'max_nesting_level' => 3,
'html_input' => 'escape',
]
);