From 7912273926ce28102de6c80da3c112f86c973a10 Mon Sep 17 00:00:00 2001 From: Kevin F Date: Tue, 17 Sep 2024 18:12:33 +0200 Subject: [PATCH] reduce dictionary tag visibility --- src/plugins/remark-dictionary-tooltips.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remark-dictionary-tooltips.ts b/src/plugins/remark-dictionary-tooltips.ts index e52301e..a659581 100644 --- a/src/plugins/remark-dictionary-tooltips.ts +++ b/src/plugins/remark-dictionary-tooltips.ts @@ -52,7 +52,7 @@ function createTooltip(key: string, match?: string): string { const tt: Frontmatter | undefined = Tooltips.get(key); if (tt) { return ` - ${match || key} + ${match || key} `; } else { return key;