- Issue created by @malcomio
- π¬π§United Kingdom jefflogan
I can confirm that I am seeing the same error for a filter format that doesn't have markdown enabled.
Effects 10.3.0 onwards following the addition of the Constraint Validator in Drupal 10.3.
Using Markdown 3.0.1.
- π¬π§United Kingdom malcomio
Possibly a duplicate of π Subformstate incorrect interface error Active
- πΊπΈUnited States jasonawant New Orleans, USA
I'm also experiencing an issue when saving a text format that does not utilize the markdown filter, see π Unable to save text format without enabling Markdown filter Active .
- π¬π§United Kingdom malcomio
I noticed that the commonmark-external-links plugin is marked as deprecated.
This annotation was committed for #3142418: Support multiple libraries per plugin β .
I tried deleting it, and clearing the cache, but got the same error for commonmark-heading-permalink (which isn't marked as deprecated.
- Merge request !34Issue #3463119 remove plugins and catch all exceptions β (Open) created by malcomio
- Status changed to Needs review
5 months ago 4:36am 29 October 2024 - π¨π¦Canada ambient.impact Toronto
Even after applying the patch from the merge request and clearing caches, I'm still getting the fatal error. Is there a step I'm forgetting to get this to work?
- π¦πΉAustria roromedia Linz
Hi, same here. Whenever I try to save a text filter like Full HTML the error happens. Only possibility is to fully disable the markdown module to get it working again. Unfortunately there is no other module which outputs markdown which you can bring in as markdown_easy conflicts on install with the existing markdown-text filter.
- π¬π§United Kingdom malcomio
Yes we're also seeing the same error - I don't think the issue should have been set to Needs Review.
Have marked the merge request as draft.
- First commit to issue fork.
- π¬π§United Kingdom malcomio
With the latest changes in the merge request, this seems to be working as expected.
I think that this may be a side effect of the patch that we're using for β¨ Add support for Commonmark v2 Active - the plugins that seem to be causing this problem are all related to CommonMark.
Ideally we'd address the problem that causes these plugins to be missing an id, rather than just deleting them altogether.
- Status changed to Needs work
3 months ago 8:57am 6 January 2025 - π¬π§United Kingdom malcomio
This change seems to cause problems with existing filters that have markdown enabled.
- πΊπΈUnited States aasarava San Diego
Bumping this to Critical priority since site it breaks the ability for site admins to edit the site's text formats.
From my testing, it appears that the problem occurs when trying to save a text format that has CKeditor 5 configured as the editor. Markdown does NOT need to be enabled on the format at all. So I'm not sure why the validator is even bothering trying to check the Markdown extensions.
It feels like there's some incompatibility with the way the Markdown extensions are defined, or the way they're validated.
- π«π·France MacSim
After applying the MR34 patch, I was able to save my text format configuration before removing the patch.
I exported the config and got the following diff:+ markdown: + id: filter_null + provider: filter + status: false + weight: -15 + settings: { }
while we should have:
+ markdown: + id: markdown + provider: markdown + status: false + weight: -15 + settings: { }
- π«π·France MacSim
It might be because ids are missing in
markdown.schema.yml
filter_settings.markdown: type: markdown.parser mapping: + id: + type: string + label: 'Filter ID' override: type: boolean label: 'Override'
We might have to add something like that to all
markdown.parser_settings.*
and maybe alsomarkdown.extension_settings.*
.Since this file is only used during the module installation, we should use a
hook_update somehow
- π¬π§United Kingdom malcomio
For anyone who is having this problem when trying to edit non-markdown formats, there is a workaround:
1. delete the markdown filter format:
drush cdel filter.format.markdown
2, uninstall the markdown module:drush pmu markdown
3. clear cache:drush cr
4. re-enable markdown:drush en markdown
5. re-create the markdown format - First commit to issue fork.
- π³π±Netherlands megachriz
In 3463119-abort-validation I've added code to abort validation of the Markdown settings and also remove the Markdown settings from the form state when the markdown filter is not enabled. In my case, this allows a text format with CKEditor enabled but with Markdown disabled to be saved again.
It does not solve the underlying error, because the reported error message is still there when you both enable CKEditor and Markdown. But it looks like they aren't meant to be enabled together.
This should fix π Unable to save text format without enabling Markdown filter Active as well.