X-Git-Url: https://git.r.bdr.sh/rbdr/gema_texto/blobdiff_plain/8beb2bfa1af988442550c9e6999d924dd14b5236..refs/heads/main:/src/html_renderer.rs?ds=inline diff --git a/src/html_renderer.rs b/src/html_renderer.rs index e513533..61d2d73 100644 --- a/src/html_renderer.rs +++ b/src/html_renderer.rs @@ -1,4 +1,5 @@ use crate::gemini_parser::GeminiLine; +use std::path::Path; /// Renders HTML from a vector of `GeminiLine` elements. /// @@ -99,8 +100,23 @@ fn line_content(line: &GeminiLine) -> String { match line { GeminiLine::Text(content, false) => format!("

{content}

"), GeminiLine::Link(url, text) => { - let display = if text.is_empty() { url } else { text }; - format!("

{display}

") + let path = Path::new(url); + let processed_url = if !url.starts_with("gemini:") + && path + .extension() + .map_or(false, |ext| ext.eq_ignore_ascii_case("gmi")) + { + url.replace(".gmi", ".html") + } else { + url.to_string() + }; + + let display = if text.is_empty() { + &processed_url + } else { + text + }; + format!("

{display}

") } GeminiLine::Heading(level, content) => format!("{content}"), GeminiLine::ListItem(content) => format!("
  • {content}
  • "), @@ -223,12 +239,18 @@ mod tests { #[test] fn test_links() { let input = vec![ + GeminiLine::Link("gemini://hi.gmi".to_string(), "Example".to_string()), + GeminiLine::Link("/hi.gmi/kidding".to_string(), "Example".to_string()), + GeminiLine::Link("/hi.gmi".to_string(), "Example".to_string()), GeminiLine::Link("https://example.com".to_string(), "Example".to_string()), GeminiLine::Link("https://rust-lang.org".to_string(), String::new()), ]; assert_eq!( render_html(&input), - "

    Example

    \n\ + "

    Example

    \n\ +

    Example

    \n\ +

    Example

    \n\ +

    Example

    \n\

    https://rust-lang.org

    \n" ); }