From d2e6ae173eb50efe8bd15e71bd5b493e5b18ae96 Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Sun, 3 Nov 2024 12:45:29 +0100 Subject: [PATCH] Show furigana in title tooltips. --- src/Pages/markdownPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pages/markdownPage.js b/src/Pages/markdownPage.js index 7c26df1..0cbeb90 100644 --- a/src/Pages/markdownPage.js +++ b/src/Pages/markdownPage.js @@ -49,7 +49,7 @@ const Jps = ({ text, colour, underline, strikethrough }) => { } const Furigana = ({ kanji, kana }) => { - return ({kanji}{kana}) + return ({kanji}{kana}) } const MyCodeBlock = ({ children, className }) => {