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:
Colin McDonnell
2026-03-27 16:58:18 +00:00
committed by pullfrog[bot]
parent a7b8dcbced
commit bf68e0d915
4 changed files with 5 additions and 5 deletions
+1
View File
@@ -37805,6 +37805,7 @@ function buildPullfrogFooter(params) {
}
const allParts = [...parts, "[\u{1D54F}](https://x.com/pullfrogai)"];
return `
${PULLFROG_DIVIDER}
<sup>${FROG_LOGO}&nbsp;&nbsp;\uFF5C ${allParts.join(" \uFF5C ")}</sup>`;
}