fix: add blank line before footer divider to fix rendering after details
GitHub markdown needs a blank line between </details> and subsequent HTML elements. Without it, the footer renders inside the collapsed section. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
committed by
pullfrog[bot]
parent
a7b8dcbced
commit
bf68e0d915
@@ -107992,6 +107992,7 @@ function buildPullfrogFooter(params) {
|
|||||||
}
|
}
|
||||||
const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"];
|
const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"];
|
||||||
return `
|
return `
|
||||||
|
|
||||||
${PULLFROG_DIVIDER}
|
${PULLFROG_DIVIDER}
|
||||||
<sup>${FROG_LOGO} \uFF5C ${allParts.join(" \uFF5C ")}</sup>`;
|
<sup>${FROG_LOGO} \uFF5C ${allParts.join(" \uFF5C ")}</sup>`;
|
||||||
}
|
}
|
||||||
@@ -150864,7 +150865,7 @@ function renderTodoMarkdown(todos) {
|
|||||||
case "cancelled":
|
case "cancelled":
|
||||||
return `- ~~${todo.content}~~`;
|
return `- ~~${todo.content}~~`;
|
||||||
case "in_progress":
|
case "in_progress":
|
||||||
return `- **\u2192** ${todo.content}`;
|
return `- [ ] <img src="https://uploads.pullfrog.com/Progress%20Indicator.gif" width="11" style="visibility: visible; max-width: 100%;" /> ${todo.content}`;
|
||||||
case "pending":
|
case "pending":
|
||||||
return `- [ ] ${todo.content}`;
|
return `- [ ] ${todo.content}`;
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -37805,6 +37805,7 @@ function buildPullfrogFooter(params) {
|
|||||||
}
|
}
|
||||||
const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"];
|
const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"];
|
||||||
return `
|
return `
|
||||||
|
|
||||||
${PULLFROG_DIVIDER}
|
${PULLFROG_DIVIDER}
|
||||||
<sup>${FROG_LOGO} \uFF5C ${allParts.join(" \uFF5C ")}</sup>`;
|
<sup>${FROG_LOGO} \uFF5C ${allParts.join(" \uFF5C ")}</sup>`;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,9 +61,7 @@ export function buildPullfrogFooter(params: BuildPullfrogFooterParams): string {
|
|||||||
|
|
||||||
const allParts = [...parts, "[𝕏](https://x.com/pullfrogai)"];
|
const allParts = [...parts, "[𝕏](https://x.com/pullfrogai)"];
|
||||||
|
|
||||||
return `
|
return `\n\n${PULLFROG_DIVIDER}\n<sup>${FROG_LOGO} | ${allParts.join(" | ")}</sup>`;
|
||||||
${PULLFROG_DIVIDER}
|
|
||||||
<sup>${FROG_LOGO} | ${allParts.join(" | ")}</sup>`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ function renderTodoMarkdown(todos: TodoItem[]): string {
|
|||||||
case "cancelled":
|
case "cancelled":
|
||||||
return `- ~~${todo.content}~~`;
|
return `- ~~${todo.content}~~`;
|
||||||
case "in_progress":
|
case "in_progress":
|
||||||
return `- **→** ${todo.content}`;
|
return `- [ ] <img src="https://uploads.pullfrog.com/Progress%20Indicator.gif" width="11" style="visibility: visible; max-width: 100%;" /> ${todo.content}`;
|
||||||
case "pending":
|
case "pending":
|
||||||
return `- [ ] ${todo.content}`;
|
return `- [ ] ${todo.content}`;
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user