我正在使用可以从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>.
转换后。现在我想要的是在转换时,它应该只转换它应该丢弃的其余表达式的粗体表达式。
我正在使用下面的代码将降价表达式转换为下面的普通文本
var converter = new showdown.Converter(),
//Converting the response received in to html format
html = converter.makeHtml("Text attributes _italic_, *italic*, __bold__, **bold**, `monospace`.");
谢谢!