gout

A static git page generator
git clone https://git.bracken.jp/gout.git
Log | Files | Refs | README | LICENSE

commit ed43a5ed6f7daee77d872448f53f1ec21a9ba4c6
parent 43c3f57ddc0e1cfd9c6ad7dd5b554a71d9c340e5
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 20 Feb 2026 17:05:53 +0900

gopher: ensure newline after header/title line

Diffstat:
Msrc/writer/gopher/page.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/writer/gopher/page.c b/src/writer/gopher/page.c @@ -58,8 +58,8 @@ void gopher_page_begin(GopherPage* page) { if (page->title[0] != '\0' && description && description[0] != '\0') { fprintf(out, " - "); print_gopher_text(out, description, false); - fprintf(out, "\n"); } + fprintf(out, "\n"); const char* clone_url = page->repo->clone_url; if (clone_url && clone_url[0] != '\0') { fprintf(out, "[h|git clone ");