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: