26 releases

0.8.11 Nov 19, 2023
0.8.10 Sep 13, 2022
0.8.9 Mar 10, 2022
0.8.8 Nov 19, 2021
0.1.0 Jul 9, 2015

#258 in Text processing

Download history 1021/week @ 2024-11-14 1121/week @ 2024-11-21 1127/week @ 2024-11-28 1445/week @ 2024-12-05 1375/week @ 2024-12-12 1211/week @ 2024-12-19 1051/week @ 2024-12-26 1003/week @ 2025-01-02 815/week @ 2025-01-09 627/week @ 2025-01-16 661/week @ 2025-01-23 649/week @ 2025-01-30 416/week @ 2025-02-06 334/week @ 2025-02-13 459/week @ 2025-02-20 522/week @ 2025-02-27

1,852 downloads per month
Used in 8 crates (6 directly)

MIT/Apache

51KB
975 lines

Build Status

Instructions

  1. Install pandoc

  2. add the pandoc crate to your Cargo.toml

    [dependencies]
    pandoc = "0.8"
    
  3. create a pandoc builder and execute it

    let mut pandoc = pandoc::new();
    pandoc.add_input("hello_world.md");
    pandoc.set_output(OutputKind::File("hello_world.pdf".to_string()));
    pandoc.execute().unwrap();
    

PDF-output

Windows specific

install miktex or texlive, if your installation paths differ from the default use the add_latex_path_hint function to add them to the pandoc builder.

Common Issues

file not found errors

use add_pandoc_path_hint to add the actual path to pandoc search path. Under windows it can often be found in %LOCALAPPDATA%\Pandoc\, but that path is searched automatically by this crate.

Dependencies

~485KB