]> git.r.bdr.sh - rbdr/page/blob - src/main.rs
e04da8abb815f787d599ef457fe23c70b7a0d6d2
[rbdr/page] / src / main.rs
1 mod gemini_parser;
2 mod file_finder;
3 mod file_handler;
4
5 use std::io::Result;
6 use std::env::current_dir;
7 use std::fs::create_dir_all;
8
9 use crate::gemini_parser::parse;
10 use crate::file_finder::find_files;
11 use crate::file_handler::FileHandler;
12
13 fn main() -> Result<()> {
14 let gemini_source = "# Test\n## 2nd H\na line\n another line\n```\npreformat\n=> preformat\n```\n=> http://lol.com\n=> http://lol.com lol\n* lol\nbla\n* lol\n* lmao\n> blabla\n> blabla";
15 let html = parse(gemini_source);
16 println!("{}", html);
17
18 let source = current_dir()?;
19 let source_name = source.file_name().unwrap().to_string_lossy();
20 let parent = source.parent().unwrap();
21 let destination_name = format!("{}_html", source_name);
22 let destination = parent.join(destination_name);
23
24 // Step 1. Identify the files
25 let files = find_files(&source);
26
27 // Step 2. Prepare the target priority
28 create_dir_all(&destination)?;
29
30 println!("Found {} files", files.len());
31
32 // Step 3. Load the layout
33 let mut file_handler = FileHandler::default();
34 file_handler.get_layout_or_panic(&files);
35
36 // Step 4. Process all files
37 file_handler.handle_all(&source, &destination, &files);
38 Ok(())
39 }