From d8ff94a7f4fbfad71856c9f70b8c6ae0c155a205 Mon Sep 17 00:00:00 2001 From: Fabrice Lamant Date: Sun, 28 Jul 2024 11:38:42 +0200 Subject: [PATCH] bold font for time --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index aa732a2e9..1c754e6d6 100644 --- a/src/index.js +++ b/src/index.js @@ -302,7 +302,7 @@ const generateTodayPage = () => { const summary = event.SUMMARY.match(/ceremony/gi) ? event.SUMMARY : event.SUMMARY.split(" ").slice(1).join(" "); html.push(`
`); - html.push("
__:__
"); + html.push("
__:__
"); html.push("
"); html.push(`
${sport.name.toUpperCase()} ${event._MEDAL ? "🏅" : ""}
`); html.push(`
${summary}`);