diff --git a/src/commands/external/ArticleCommand.js b/src/commands/external/ArticleCommand.js index c611fdfa4..fedc9b3d7 100644 --- a/src/commands/external/ArticleCommand.js +++ b/src/commands/external/ArticleCommand.js @@ -225,6 +225,10 @@ export default class ArticleCommand extends Command { return href; } + if (content.includes('https://') || content.includes('http://')) { + return href; + } + return hyperlink(content, href); } });