Links in 'Markdown cannot be installed' error message show as raw HTML

Created on 20 July 2023, over 1 year ago

Problem/Motivation

I tried to install markdown and got an error message saying I can't because there are no parsers. However, the error message is incorrectly built and shows links as raw HTML:

Markdown cannot be installed because there are no parsers currently installed. Please install at least one parser via Composer to enable this module:

    CommonMark: Requires <a href="https://commonmark.thephpleague.com" target="_blank">league/commonmark</a> (https://commonmark.thephpleague.com)

SNIP

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

3.0

Component

User interface

Created by

🇬🇧United Kingdom joachim

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

Comments & Activities

  • Issue created by @joachim
  • 🇬🇧United Kingdom joachim

    The problem is somewhere in this but the logic is so convoluted that I can't figure it out:

          $urlString = $url ? $url->toString() : NULL;
          $urlLink = !$cli && $url ? Link::fromTextAndUrl($url->toString(), $url)->toString() : $urlString;
    
  • 🇬🇧United Kingdom joachim

    Yeah, you can't put a rendered Link object in a @placeholder -- @ gets escaped!

          $urlLink = !$cli && $url ? Link::fromTextAndUrl($url->toString(), $url)->toString() : $urlString;
          return new FormattableMarkup($urlLink ? '@label: @reason (@url)' : '@label: @reason', [
            '@label' => $parser->getLabel(),
            '@reason' => $reason,
            '@url' => $urlLink,
          ]);
    

    The HTML A element needs to be in the main part of the string, not in a placeholder replacement.

  • 🇬🇧United Kingdom joachim

    Same applies to this:

              '@reason' => $reason,
    

    $reason contains an HTML A element!

Production build 0.71.5 2024