From 7ad069e6322be1b0cac0528dfe7418b589fee72a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rez?= Date: Tue, 1 Oct 2024 23:54:08 +0100 Subject: [PATCH] chore: fix update to 0.4.40 with absolute links via site-url --- src/renderer/html_handlebars/hbs_renderer.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/renderer/html_handlebars/hbs_renderer.rs b/src/renderer/html_handlebars/hbs_renderer.rs index 16f4938..94c486f 100644 --- a/src/renderer/html_handlebars/hbs_renderer.rs +++ b/src/renderer/html_handlebars/hbs_renderer.rs @@ -53,8 +53,12 @@ impl HtmlHandlebars { ctx.data .insert("git_repository_edit_url".to_owned(), json!(edit_url)); } - - let content = utils::render_markdown(&ch.content, ctx.html_config.smart_punctuation()); + let content = if let Some(site_url) = &ctx.html_config.site_url { + let ch = ch.content.clone().replace("](./",&format!("]({}",site_url)); + utils::render_markdown(&ch, ctx.html_config.smart_punctuation()) + } else { + utils::render_markdown(&ch.content, ctx.html_config.smart_punctuation()) + }; let fixed_content = utils::render_markdown_with_path( &ch.content,