23 releases

0.4.6 Feb 5, 2023
0.4.5 Nov 22, 2022
0.4.4 May 7, 2022
0.4.3 Jan 13, 2022
0.2.1 Feb 7, 2020

#265 in Math

Download history 279/week @ 2023-11-20 371/week @ 2023-11-27 343/week @ 2023-12-04 326/week @ 2023-12-11 328/week @ 2023-12-18 179/week @ 2023-12-25 330/week @ 2024-01-01 358/week @ 2024-01-08 275/week @ 2024-01-15 463/week @ 2024-01-22 351/week @ 2024-01-29 323/week @ 2024-02-05 338/week @ 2024-02-12 343/week @ 2024-02-19 350/week @ 2024-02-26 325/week @ 2024-03-04

1,370 downloads per month
Used in 15 crates (13 directly)

MIT/Apache

345KB
696 lines

katex-rs

Build Status Latest Version Rust Documentation

This crate offers Rust bindings to KaTeX. This allows you to render LaTeX equations to HTML.

Documentation

https://docs.rs/katex

Usage

Add this to your Cargo.toml:

[dependencies]
katex = "0.4"

This crate offers the following features:

  • 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.
  • wasm-js: Use wasm-bindgen and js-sys as the JS backend. You need to disable the default features to enable this backend.

Examples

let html = katex::render("E = mc^2").unwrap();

let opts = katex::Opts::builder().display_mode(true).build().unwrap();
let html_in_display_mode = katex::render_with_opts("E = mc^2", &opts).unwrap();

See Also

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~4–5MB
~128K SLoC