]> git.r.bdr.sh - rbdr/page/blobdiff - src/main.rs
Use gema_texto for gemini parsing
[rbdr/page] / src / main.rs
index cedd55761a9ced615637ca98326c693e10be9491..04142880c110c7fb8db9b487f192dfb8faa0b57e 100644 (file)
@@ -1,7 +1,5 @@
 mod file_finder;
 mod file_handler;
-mod gemini_parser;
-mod html_renderer;
 
 use std::env::current_dir;
 use std::fs::{create_dir_all, remove_dir_all};
@@ -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,9 +24,9 @@ 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);
         }
     }