Error "No default markdown parser set" even though /admin/config/content/markdown lists a default parser

Created on 19 October 2021, over 3 years ago
Updated 15 April 2023, almost 2 years ago

Problem/Motivation

If I visit /admin/config/content/markdown, I have one available parser: "Parsedown (default)". The fact that the word "default" is on this page indicates to me that Parsedown is the default parser.

However, if I run:

\Drupal::service('plugin.manager.markdown.parser')->getDefaultParser();

I get a warning:

 [warning] No default markdown parser set, using first available installed parser "parsedown".

On a very busy site, this leads to dozens of warnings being logged _per second_.

On markdown.module, markdown_modules_installed() sets the config markdown.settings.default_parser when the markdown module is installed, but parsers may not be available at the moment markdown is installed; they may be installed after, which causes markdown.settings.default_parser to never be set.

The workaround is to run the following code:

drush ev "markdown_modules_installed(['markdown'])"

Then re-export your configuration (drush config:export), then import your configuration to the production site.

Steps to reproduce

Install the module with no parsers available, and then add a parser using composer require, then run \Drupal::service('plugin.manager.markdown.parser')->getDefaultParser();

Proposed resolution

Do not log a warning,

Remaining tasks

Make sure the config markdown.settings.default_parser is set when new parsers are added.

User interface changes

None.

API changes

None.

Data model changes

None.

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇨🇦Canada alberto56

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024