diff --git a/src/convert.rs b/src/convert.rs
index b901169..86e4ecb 100644
--- a/src/convert.rs
+++ b/src/convert.rs
@@ -47,7 +47,7 @@ pub fn convert_document(markdown: &str) -> String {
let mut attributes = img_info.split(':');
let src = attributes.next().unwrap();
let alt = attributes.next().unwrap_or_else(|| &"\"\"");
- html += &format!("\n");
+ html += &format!("\n");
continue;
}
@@ -61,7 +61,7 @@ pub fn convert_document(markdown: &str) -> String {
}
if let Some(youtube_id) = line.strip_prefix("==youtube:") {
- html += &format!("https://youtu.be/{youtube_id}\n");
+ html += &format!("https://youtu.be/{youtube_id}
\n");
continue;
}