style: improve codespan styling and checkbox markers

This commit is contained in:
mitchell 2026-05-01 21:23:21 -04:00
parent 7b730631b2
commit 94895aacd5
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import { renderMarkdown } from "./src/render/markdown.ts";
const text = await Bun.file("test.md").text();
const text = await Bun.file("README.md").text();
const [columns] = process.stdout.getWindowSize();
process.stdout.write(await renderMarkdown(text, columns));