feat: add interactive config setup and baseURL support

This commit is contained in:
mitchell 2026-05-03 21:10:39 -04:00
parent d9bffdec2b
commit 3c9a5e625a
4 changed files with 60 additions and 25 deletions

View file

@ -112,5 +112,6 @@ export async function renderMarkdown(
html: () => "",
});
return rendered.replace(/\n\n$/, "\n");
const replaced = rendered.replace(/\n\n$/, "\n");
return Bun.wrapAnsi(replaced, columns, { trim: false });
}