From 1efe0a76ebdac498a312b45eff63f304b25bcdc6 Mon Sep 17 00:00:00 2001 From: jay Date: Tue, 9 Jun 2026 19:37:33 -0400 Subject: [PATCH] Digest: darker section rule before 'From what you follow' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per user — a heavier, darker divider (2px #9aa6b2) marks the brief→personal section change, distinct from the light #e8e3d8 item separators above. Co-Authored-By: Claude Opus 4.8 (1M context) --- goodnews/digest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/goodnews/digest.py b/goodnews/digest.py index 537c118..a853a5f 100644 --- a/goodnews/digest.py +++ b/goodnews/digest.py @@ -169,8 +169,11 @@ def build_digest(items: list[dict], brief_date: str, unsub_url: str, base: str | followed_html = "" if followed: followed_html = ( + # A darker, heavier rule marks the section change (the item separators + # above are a light #e8e3d8) — a clear shift from brief to personal picks. + '
' '
From what you follow
' + 'margin:0 0 28px">From what you follow' + "".join(_item_html(it, base) for it in followed) ) html = (