Revert "trim title off body if detected"

This reverts commit 5c27d9c0ea.
This commit is contained in:
2026-03-24 21:39:43 +00:00
parent 5c27d9c0ea
commit a79d485c93
+1 -1
View File
@@ -83,7 +83,7 @@ export default function gemtext(config: GemtextConfig = {}): AstroIntegration {
) )
if (data["title"]) { if (data["title"]) {
body = body.replace(`# ${data["title"]}\n`, ''); body.replace(`# ${data["title"]}\n`, '');
body = body.trim(); body = body.trim();
} }