Crates.io | pi-search |
lib.rs | pi-search |
version | 0.2.1 |
source | src |
created_at | 2022-03-14 13:13:44.185957 |
updated_at | 2022-03-15 03:17:32.47012 |
description | Search digit in pi |
homepage | |
repository | https://github.com/oovm/pi-searcher |
max_upload_size | |
id | 549822 |
size | 13,287,759 |
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"));
}