Crate dioxus_katex

Crate dioxus_katex 

Source
Expand description

§KaTeX for Dioxus

Render math with KaTeX in Dioxus!

§How to use

  • First you need to import css cdn:
<link rel="stylesheet" href="https://unpkg.com/katex@0.12.0/dist/katex.min.css">
  • Call use_katex_display hook to prepare context.
  • Call compile to get math expression node.
use dioxus_katex::use_katex_display;

let katex = use_katex_display(&cx);
let math = katex.compile(text);

Structs§

KaTeXOptions
Read https://katex.org/docs/options.html for more information.
UseKatex
A hook which keeping the context of KaTeX formula.

Functions§

use_katex
A builder for a UseKatex hook.
use_katex_display
A builder for a UseKatex hook in display mode.
use_katex_inline
A builder for a UseKatex hook in inline mode.