jotdown/examples/jotdown_wasm/src/lib.rs

11 lines
239 B
Rust
Raw Normal View History

2023-02-05 13:41:11 -05:00
use wasm_bindgen::prelude::*;
#[must_use]
#[wasm_bindgen]
pub fn jotdown_render(djot: &str) -> String {
let events = jotdown::Parser::new(djot);
let mut html = String::new();
jotdown::html::push(events, &mut html);
html
}