Minor fix

This commit is contained in:
ef3d0c3e 2024-07-25 14:05:27 +02:00
parent 6bd7bf40da
commit 71a0c33ec7

View file

@ -130,14 +130,14 @@ impl Element for Media {
Target::HTML => { Target::HTML => {
let mut result = String::new(); let mut result = String::new();
result.push_str("<div class=\"medium\">");
let width = self let width = self
.width .width
.as_ref() .as_ref()
.map_or(String::new(), |w| format!(r#" width="{w}""#)); .map_or(String::new(), |w| format!(r#" style="width:{w};""#));
result.push_str(format!(r#"<div class="medium" {width}>"#).as_str());
match self.media_type { match self.media_type {
MediaType::IMAGE => result.push_str( MediaType::IMAGE => result.push_str(
format!(r#"<a href="{0}"><img src="{0}"{width}></a>"#, self.uri).as_str(), format!(r#"<a href="{0}"><img src="{0}"></a>"#, self.uri).as_str(),
), ),
MediaType::VIDEO => todo!(), MediaType::VIDEO => todo!(),
MediaType::AUDIO => todo!(), MediaType::AUDIO => todo!(),