X-Git-Url: https://git.r.bdr.sh/rbdr/page/blobdiff_plain/ea5297364f8a1b2c4e684140024b60a83b087b50..68fa37d61babe8d990ace5f9cb5a7de81eb57ea0:/src/main.rs diff --git a/src/main.rs b/src/main.rs index 7ab009e..9b823b0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,15 +6,10 @@ use std::io::Result; use std::env::current_dir; use std::fs::{create_dir_all, remove_dir_all}; -use crate::gemini_parser::parse; use crate::file_finder::find_files; use crate::file_handler::FileHandler; fn main() -> Result<()> { - 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"; - let html = parse(gemini_source); - println!("{}", html); - let source = current_dir()?; let source_name = source.file_name().unwrap().to_string_lossy(); let parent = source.parent().unwrap();