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
mod parse;
mod render;
mod tokens;
mod trie;
pub enum OutputFormat {
Latex,
}
pub fn convert(
input: String,
output_format: OutputFormat,
custom_functions: Vec<&str>,
) -> String {
let tokens = tokens::tokenize(&input, custom_functions);
let expr = parse::parse(tokens);
render::render(expr, output_format)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn blabla() {
assert_eq!(
convert("blabla".into(), OutputFormat::Latex, vec![]),
"blabla".to_owned()
);
}
}