From 40c1f46cab65bcd03d43fd05ad9a64808195daf8 Mon Sep 17 00:00:00 2001 From: mohanram Date: Sun, 18 Jan 2026 14:50:08 +0000 Subject: [PATCH] feat: Make the title bold in hover --- src/services/jsonHover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/jsonHover.ts b/src/services/jsonHover.ts index afaf25b..9ff65c4 100644 --- a/src/services/jsonHover.ts +++ b/src/services/jsonHover.ts @@ -90,7 +90,7 @@ export class JSONHover { let result = ''; if (title) { - result = toMarkdown(title); + result = "**" + toMarkdown(title) + "**"; } if (markdownDescription) { if (result.length > 0) {