remove html tags from item description

This commit is contained in:
yggverse 2025-07-09 03:45:56 +03:00
parent f563fb500b
commit 48ca526a67

View file

@ -106,7 +106,7 @@ pub fn item_description(size: Option<u64>, list: Option<&Vec<(String, u64)>>) ->
b.push(format!("* {path}: {size}"))
}
}
Some(b.join("<br>\n"))
Some(b.join("\n"))
}
fn escape(subject: &str) -> String {