use std::path::Path;
use crate::file_handler::{File, FileType, Strategy as FileHandlerStrategy};
-use crate::gemini_parser::parse;
-use crate::html_renderer::render_html;
+use gema_texto::{gemini_parser::parse, html_renderer::render_html};
impl Strategy {
fn is_title(line: &str) -> bool {
#[test]
fn extracts_description() {
assert_eq!(
- Strategy
- ::get_description("--- description: What is this?")
- .trim(),
+ Strategy::get_description("--- description: What is this?").trim(),
"What is this?"
);
}