resume-generator 0.1.0

does what it says. quick way to generate a latex resume
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
crate::ix!();

pub fn pdflatex(output_directory: &str, output_path: &str) -> Result<(),std::io::Error> {

    // Run pdflatex command with output directory specified
    Command::new("pdflatex")
        .arg(format!("-output-directory={}", output_directory))
        .arg(&output_path)
        .status()?;

    Ok(())
}