From bf68e0d9150c4032d734ba3b19d3225aad55e7f3 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Fri, 27 Mar 2026 16:58:18 +0000 Subject: [PATCH] fix: add blank line before footer divider to fix rendering after details GitHub markdown needs a blank line between and subsequent HTML elements. Without it, the footer renders inside the collapsed section. Co-Authored-By: Claude Opus 4.6 (1M context) --- entry | 3 ++- post | 1 + utils/buildPullfrogFooter.ts | 4 +--- utils/todoTracking.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/entry b/entry index a1e8898..e183aa1 100755 --- a/entry +++ b/entry @@ -107992,6 +107992,7 @@ function buildPullfrogFooter(params) { } const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"]; return ` + ${PULLFROG_DIVIDER} ${FROG_LOGO}  \uFF5C ${allParts.join(" \uFF5C ")}`; } @@ -150864,7 +150865,7 @@ function renderTodoMarkdown(todos) { case "cancelled": return `- ~~${todo.content}~~`; case "in_progress": - return `- **\u2192** ${todo.content}`; + return `- [ ] ${todo.content}`; case "pending": return `- [ ] ${todo.content}`; default: diff --git a/post b/post index f1e68c0..b8b1199 100755 --- a/post +++ b/post @@ -37805,6 +37805,7 @@ function buildPullfrogFooter(params) { } const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"]; return ` + ${PULLFROG_DIVIDER} ${FROG_LOGO}  \uFF5C ${allParts.join(" \uFF5C ")}`; } diff --git a/utils/buildPullfrogFooter.ts b/utils/buildPullfrogFooter.ts index 5eaf26f..37de638 100644 --- a/utils/buildPullfrogFooter.ts +++ b/utils/buildPullfrogFooter.ts @@ -61,9 +61,7 @@ export function buildPullfrogFooter(params: BuildPullfrogFooterParams): string { const allParts = [...parts, "[𝕏](https://x.com/pullfrogai)"]; - return ` -${PULLFROG_DIVIDER} -${FROG_LOGO}  | ${allParts.join(" | ")}`; + return `\n\n${PULLFROG_DIVIDER}\n${FROG_LOGO}  | ${allParts.join(" | ")}`; } /** diff --git a/utils/todoTracking.ts b/utils/todoTracking.ts index ac57aec..2802ed3 100644 --- a/utils/todoTracking.ts +++ b/utils/todoTracking.ts @@ -39,7 +39,7 @@ function renderTodoMarkdown(todos: TodoItem[]): string { case "cancelled": return `- ~~${todo.content}~~`; case "in_progress": - return `- **→** ${todo.content}`; + return `- [ ] ${todo.content}`; case "pending": return `- [ ] ${todo.content}`; default: