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()) }