From 49e773985356343f32ba20f6f49b6afcaef16492 Mon Sep 17 00:00:00 2001 From: giles Date: Mon, 23 Feb 2026 21:40:04 +0000 Subject: [PATCH] Bold post titles in federated AP content --- bp/blog/ghost/ghost_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bp/blog/ghost/ghost_sync.py b/bp/blog/ghost/ghost_sync.py index 790b25c..c3d92ee 100644 --- a/bp/blog/ghost/ghost_sync.py +++ b/bp/blog/ghost/ghost_sync.py @@ -1004,7 +1004,7 @@ def _build_ap_post_data(post, post_url: str, tag_objs: list) -> dict: # Content HTML: title + excerpt + "Read more" link parts: list[str] = [] if post.title: - parts.append(f"

{html_escape(post.title)}

") + parts.append(f"

{html_escape(post.title)}

") body = post.plaintext or post.custom_excerpt or post.excerpt or ""