This repository shows how to use typst as a library in Rust.
Any code presented in this repository is meant to help you understand how to interface with typst
.
Please use the code as you like.
fn main() {
let content = "= Hello, World!";
// All the abstraction needed is here (!)
let world = TypstWrapperWorld::new("./examples".to_owned(), content.to_owned());
// Render document
let document = typst::compile(&world)
.output
.expect("Error compiling typst");
// Output to pdf
let pdf = typst_pdf::pdf(&document, &PdfOptions::default()).expect("Error exporting PDF");
fs::write("./output.pdf", pdf).expect("Error writing PDF.");
}
Check the example for more information.
Code has been inspired by