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

Rust bindings to KaTeX

Results 5 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...