Crate prism_wasmbind

Source
Expand description

§KaTeX WASM (KaTeX 0.15.2)

§Basic

Notice that this does not include css, so cdn still must be included.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">
use katex_wasmbind::KaTeXOptions;

fn main() {
    let d = KaTeXOptions::display_mode();
    let i = KaTeXOptions::inline_mode();
    assert_ne!(d.render("\\frac12"), i.render("\\frac12"));
}

§Todo list

  • Remove serde dependencies

Structs§

PrismOptions
Read https://katex.org/docs/options.html for more information.

Enums§

PrismLanguage
A Rust struct that represents the options for the Prism Wasm library.

Constants§

PRISM_CSS
The needed css which should packing to project

Functions§

prism_render