From c3b1afe267fd92eca1728980ee60fb900ea7f83a Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 22 Jul 2025 17:16:17 -0400 Subject: [PATCH] what's wrong with this path? --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e7e7c18..16c7217 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -145,9 +145,10 @@ fn media_content(item: &Item) -> Content{ } } } - _ => {} + _ => { + Content::Markdown(format!("Incorrectly assigned element:{:#?}",item)) + } } - Content::Markdown("Media not supported yet".to_owned()) }