https://bugs.kde.org/show_bug.cgi?id=510574

Christoph Cullmann <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Christoph Cullmann <[email protected]> ---
I would propose to post-pass the link not just for the markdown stuff but just

static void adjustLink(QString &link)
{
    // fixup links like:
    // [ccc](https://cullmann.dev)
    // Visit 'https://cullmann.dev'
    // Visit "https://cullmann.dev";
    // The web site https://cullmann.dev.
    // <https://cullmann.dev>
    static const QRegularExpression skipSpecial(QStringLiteral("[)'\".>]$"));
    link.replace(skipSpecial, QString());
}

to kill any of these closing things at the end.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to