]> git.r.bdr.sh - rbdr/page/blobdiff - src/main.rs
Use gema_texto for gemini parsing
[rbdr/page] / src / main.rs
index 902f3c3a757747e08581999b0e57d1c85f5cd732..04142880c110c7fb8db9b487f192dfb8faa0b57e 100644 (file)
@@ -1,12 +1,10 @@
-mod gemini_parser;
-mod html_renderer;
 mod file_finder;
 mod file_handler;
 
-use std::io::Result;
-use std::process::exit;
 use std::env::current_dir;
 use std::fs::{create_dir_all, remove_dir_all};
+use std::io::Result;
+use std::process::exit;
 
 use crate::file_finder::find_files;
 use crate::file_handler::FileHandler;
@@ -15,9 +13,9 @@ fn main() -> Result<()> {
     let source = current_dir()?;
     let source_name = source.file_name().unwrap().to_string_lossy();
     let parent = source.parent().unwrap();
-    let gemini_destination_name = format!("{}_gemini", source_name);
+    let gemini_destination_name = format!("{source_name}_gemini");
     let gemini_destination = parent.join(gemini_destination_name);
-    let html_destination_name = format!("{}_html", source_name);
+    let html_destination_name = format!("{source_name}_html");
     let html_destination = parent.join(html_destination_name);
 
     // Step 1. Identify the files
@@ -26,25 +24,19 @@ fn main() -> Result<()> {
     // Step 2. Load the layout
     let mut file_handler = FileHandler::default();
     match file_handler.get_layout_or_panic(&files) {
-        Ok(_) => {},
+        Ok(()) => {}
         Err(error) => {
-            eprintln!("{}", error);
+            eprintln!("{error}");
             exit(1);
         }
     }
 
     // Step 3. Prepare the target priority
-    match remove_dir_all(&html_destination) {
-        _ => {}
-    };
-    match remove_dir_all(&gemini_destination) {
-        _ => {}
-    };
-
-    create_dir_all(&html_destination)
-        .expect("Could not create HTML directory.");
-    create_dir_all(&gemini_destination)
-        .expect("Could not create Gemini directory.");
+    let _ = remove_dir_all(&html_destination);
+    let _ = remove_dir_all(&gemini_destination);
+
+    create_dir_all(&html_destination).expect("Could not create HTML directory.");
+    create_dir_all(&gemini_destination).expect("Could not create Gemini directory.");
 
     // Step 4. Process all files
     file_handler.handle_all(&source, &html_destination, &gemini_destination, &files);