Skip to content

Commit 507cdfa

Browse files
committed
Markdown: Make bold text just bold and not yellow
1 parent ee2658b commit 507cdfa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

npm-app/src/display/markdown-renderer.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ export class MarkdownStreamRenderer {
112112
// Code blocks should preserve formatting with minimal spacing
113113
code_block: (text: string) => `${text || ''}`,
114114
fence: (text: string, lang?: string) => `${text || ''}`,
115+
// Disable bold color styling - use same color as default text
116+
strong: (text: string) => text || '',
115117
},
116118
})
117119

0 commit comments

Comments
 (0)