fix: improve config loading flow and table column width

This commit is contained in:
mitchell 2026-05-04 22:02:07 -04:00
parent decfd2bde0
commit 7f0498fc84
3 changed files with 18 additions and 11 deletions

View file

@ -110,7 +110,7 @@ export async function renderMarkdown(
.header(header)
.body(body)
.border()
.maxColWidth(Math.floor(columns / header.length) - 3)
.maxColWidth(Math.floor(columns / header.length) - header.length)
.toString();
header = [];
body = [];