Merge pull request #8957 from JeroenED/unlimited-nesting-level

Remove nesting level for markdown
This commit is contained in:
James Cole
2024-06-11 15:17:43 +02:00
committed by GitHub

View File

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