implementation 'io.noties.markwon:core:4.6.2'
implementation 'io.noties.markwon:ext-latex:4.6.2'
implementation 'io.noties.markwon:html:4.6.2'
implementation 'io.noties.markwon:inline-parser:4.6.2'
markwon = Markwon.builder(this)
.usePlugin(HtmlPlugin.create())
.usePlugin(JLatexMathPlugin.create(18, builder -> {
builder.inlinesEnabled(true);
builder.blocksEnabled(true);
builder.blocksLegacy(true);
}))
.usePlugin(MarkwonInlineParserPlugin.create())
.build();
这样设置有什么问题吗,为什么不能支持数学公式呢
implementation 'io.noties.markwon:core:4.6.2'
implementation 'io.noties.markwon:ext-latex:4.6.2'
implementation 'io.noties.markwon:html:4.6.2'
implementation 'io.noties.markwon:inline-parser:4.6.2'
这样设置有什么问题吗,为什么不能支持数学公式呢