add listing separator

This commit is contained in:
postscriptum 2025-07-04 20:49:23 +03:00
parent a04ccbb476
commit ec047cfcee

View file

@ -84,7 +84,7 @@ impl Template {
if matches!(self.format, Format::Gemtext) {
let mut b = Vec::with_capacity(t.len());
for this in t {
b.push(this.replace('#', "*"));
b.push(this.replace('#', "* "));
}
b.join("\n")
} else {