talmudifier 0.2.0

Convert markdown text into Talmud-like PDFs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generate `example_talmudifier.json`

#[cfg(feature = "default-fonts")]
fn main() {
    use std::fs::write;

    use serde_json::to_string_pretty;
    use talmudifier::prelude::*;

    let talmudifier = Talmudifier::default();
    let s = to_string_pretty(&talmudifier).unwrap();
    write("example_talmudifier.json", s).unwrap();
}

#[cfg(not(feature = "default-fonts"))]
fn main() {}