fix: missing header pound signs

This commit is contained in:
mitchell 2026-04-18 23:37:59 -04:00
parent d327ed614a
commit 9daddd1c8c

View file

@ -71,6 +71,7 @@ export default class Renderer {
const str = this.buffer.substring(0, idx) ?? ""; const str = this.buffer.substring(0, idx) ?? "";
await this.render(str, pipe); await this.render(str, pipe);
this.buffer = this.buffer.substring(idx); this.buffer = this.buffer.substring(idx);
this.write(this.buffer);
this.unsafeIndex = 0; this.unsafeIndex = 0;
} }
} }