1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#[macro_use]
extern crate log;
mod error;
mod example;
mod file;
mod libreoffice;
mod metadata;
mod pandoc;
mod tera;
mod util;
use example::Example;
use file::File;
pub enum OutputFormat {
Pdf,
Odt,
Docx,
OdtPdf,
Reveal,
}
pub fn convert<'a>(
path: &'a str,
output: Option<&'a str>,
keep_temp: bool,
format: OutputFormat,
) -> Result<(), error::SmoothError<'a>> {
let f = File::new(path, output, format)?;
f.convert(keep_temp)?;
Ok(())
}
pub fn example<'a>(path: Option<&'a str>) -> Result<Option<&'a str>, error::SmoothError<'a>> {
match path {
Some(x) => {
Example::save_to_file(x)?;
Ok(None)
}
None => Ok(Some(Example::as_string()?)),
}
}