diff --git a/apps/website/src/pages/Blog.tsx b/apps/website/src/pages/Blog.tsx
index 533758d354..4bd98ed851 100644
--- a/apps/website/src/pages/Blog.tsx
+++ b/apps/website/src/pages/Blog.tsx
@@ -159,7 +159,11 @@ function inline(text: string): React.ReactNode[] {
while ((m = re.exec(text)) !== null) {
if (m.index > last) out.push(text.slice(last, m.index))
if (m[1] !== undefined) {
- out.push({m[1]})
+ // Bold RECURSES: one Russian paragraph is a code span inside a bold
+ // span, and a flat pass matches the bold first, swallows the backticks
+ // and shows them. Found on 1 page of 62 -- and only because the sweep
+ // covered BOTH locales. The English-only sweep before it read clean.
+ out.push({inline(m[1])})
} else {
out.push(