我正在尝试使用 AsciidoctorJ 将包含数学表达式的 asciidoc 文件转换为 html,但到目前为止还没有成功。
这是我要转换的 math.asciidoc。
= My Diabolical Mathmatical Opus
Jamie Moriarty
sample1
asciimath:[sqrt(4) = 2]
stem:[sqrt(4) = 2]
我在 Asciidoc 中使用以下配置
Attributes attributes = AttributesBuilder.attributes()
.math("asciimath")
.get();
Options options = OptionsBuilder.options()
.attributes(attributes)
.docType("article")
.safe(SafeMode.SERVER)
.backend("html5")
.get();
asciidoctor.convert(asciiDoc, options);
输出总是显示如下内容:
sample1
\$sqrt(4) = 2\$
\$sqrt(4) = 2\$
在上面生成的 HTML 输出中,我们如何渲染数学方程?