From 0795ed5a22b4d812fa6f63bdc747feae98f17ba9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 23:28:45 +0000 Subject: [PATCH 1/2] Initial plan From 84661b94d8ba2ff13d2c12e475ddb5e63e50f254 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 23:32:29 +0000 Subject: [PATCH 2/2] Fix: preserve bold font-weight on links inside strong tags in prose Co-authored-by: egeakman <75242929+egeakman@users.noreply.github.com> --- src/styles/global.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index 30aa579fa..9dc5ad565 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -150,6 +150,14 @@ p.cross::after { word-break: break-word; } + /* Preserve bold when a link is wrapped in (e.g. **[text](#link)**). + The typography plugin sets an explicit font-weight on tags, which + overrides the inherited bold from a parent . */ + strong a, + a strong { + font-weight: bold; + } + h1, h2, h3,