katex-rs icon indicating copy to clipboard operation
katex-rs copied to clipboard

Rust bindings to KaTeX

Results 9 katex-rs issues
Sort by recently updated
recently updated
newest added

This crate requires an embedded JS engine to execute katex. Currently, this is done using [quickjs](https://bellard.org/quickjs/) and [its rust binding](https://github.com/theduke/quickjs-rs/). However, it has certain shortages: * No support on native...

help wanted

https://github.com/KaTeX/KaTeX/issues/3823 > I'm using the mdbook-katex preprocessor for mdbook with `output="mathml"`, not sure whether it's katex's fault or the rust binding to katex that mdbook-katex uses > > ``` >...

upstream

If I use `katex` with: ```toml katex = { version = "0.4.5", default-features = false, features = ["duktape"] } ``` then, matrix expressions like ```latex \begin{vmatrix}a&b\\c&d\end{vmatrix} ``` results in an...

upstream

This PR adds the `quickjs_runtime` backend, as suggested by [this comment](https://github.com/xu-cheng/katex-rs/issues/6#issuecomment-1379935843).

Hello! I'm so excited to finally submit this as a PR! I began working on this about a year ago but then I set it aside because I struggled with...

Add a line to README to help troubleshoot a rendering problem I faced; it seems obvious in hindsight, but wasn't immediately so to me as I've not used KaTeX before

https://github.com/delskayn/rquickjs It’s better maintained than `quick-js`. Addresses #6.

[Temml](https://temml.org/) is a fork of KaTeX with improved MathML support, at the expense of not supporting non-MathML output. Add support for it under a `temml` feature flag. Addresses #15