Skip to content

Release 0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Sep 02:49
· 35 commits to master since this release
2e85f37
  • Update KaTeX to 0.13.18.
  • Support multiple JS backends. You can choose appropriate backend based on your environment.
    • quick-js: Enable by default. Use quick-js as the JS backend.
    • duktape: Use duktape as the JS backend. You need to disable the default features to enable this backend as shown in the below example.
      katex = { version = "0.4.0", default-features = false, features = ["duktape"] }
    • wasm-js: Use wasm-bindgen and js-sys as the JS backend. You need to disable the default features to enable this backend as shown in the below example. Currently, it only supports browser environment. Node.js is unsupported.
      katex = { version = "0.4.0", default-features = false, features = ["wasm-js"] }