仅使用 showdown.js Markdown 表达式库限制某些格式

Restrict only certain formatting only with showdown.js Markdown expression library

我正在使用可以从 https://github.com/showdownjs/showdown/

下载的 showdown.js

问题是我试图只允许某些格式?例如。只允许使用粗体格式,其余格式不被转换并被丢弃,例如

如果我正在写 Markdown 表达式 下面的文本

"Text attributes _italic_, *italic*, __bold__, **bold**, `monospace`."

上面的输出会低于

<p>Text attributes <em>italic</em>, <em>italic</em>, <strong>bold</strong>, <strong>bold</strong>, <code>monospace</code>.

转换后。现在我想要的是在转换时,它应该只转换粗体表达式它应该丢弃的其余表达式。

我正在使用下面的代码将 markdown 表达式转换为下面的普通文本

var converter = new showdown.Converter(),
//Converting the response received in to html format 
html = converter.makeHtml("Text attributes _italic_, *italic*, __bold__, **bold**, `monospace`.");

谢谢!

showdown.js 无法做到开箱即用。这将需要从源代码创建 showdown.js 的自定义构建,删除您不需要的子解析器。

还有其他机制可用于让摊牌仅转换粗体降价,例如侦听预调度事件和 post 解析,但由于您 want bold converted 这不是我会采用的方法,因为它需要为只需要几行代码的东西编写大量代码。

您可以改为使用 showndown.js 中 parses/converts 粗体部分的部分,如下所示:

function markdown_bold(text) {
    html = text;
    //underscores
    html = html.replace(/(^|\s|>|\b)__(?=\S)([^]+?)__(?=\b|<|\s|$)/gm, '<strong></strong>');
    //asterisks
    html = html.replace(/(\*\*)(?=\S)([^\r]*?\S[*]*)/g, '<strong></strong>');
    return html;
}

Source.