From e615af8250c05a9850981e3c3746110714a38be0 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Fri, 6 Oct 2023 17:48:26 +0200 Subject: [PATCH] changed: display a bullet instead of * in list --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 71fa5d3..3160fca 100644 --- a/main.js +++ b/main.js @@ -2138,7 +2138,7 @@ function applycolors() { if (line.startsWith(marker)) { - line = line.replace(marker, "" + marker + ""); + line = line.replace(marker, "" + marker.replaceAll("*", "•") + ""); } });