Goldmark Katex
March 10, 2025 ยท View on GitHub
Goldmark Katex is a Goldmark extension providing math and equation support through KaTeX.
Usage
// Default, errors are highlighted in red in the output
goldmark.New(goldmark.WithExtensions(&katex.Extender{})).Convert(src, dst)
// With ThrowOnError set to true
goldmark.New(goldmark.WithExtensions(&katex.Extender{
ThrowOnError: true,
})).Convert(src, dst)
Wrap inline math with a pair of single $:
$A$
Wrap block math with a pair of double $:
$$
A = \pi \times r^2
$$
Example
|
|
