We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee2658b commit 507cdfaCopy full SHA for 507cdfa
npm-app/src/display/markdown-renderer.ts
@@ -112,6 +112,8 @@ export class MarkdownStreamRenderer {
112
// Code blocks should preserve formatting with minimal spacing
113
code_block: (text: string) => `${text || ''}`,
114
fence: (text: string, lang?: string) => `${text || ''}`,
115
+ // Disable bold color styling - use same color as default text
116
+ strong: (text: string) => text || '',
117
},
118
})
119
0 commit comments