diff --git a/src/nex/template.rs b/src/nex/template.rs index ace25bc..54d7f4d 100644 --- a/src/nex/template.rs +++ b/src/nex/template.rs @@ -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 {