changed: display a bullet instead of * in list

This commit is contained in:
quenousimporte 2023-10-06 17:48:26 +02:00
parent c1967c2f60
commit e615af8250
1 changed files with 1 additions and 1 deletions

View File

@ -2138,7 +2138,7 @@ function applycolors()
{
if (line.startsWith(marker))
{
line = line.replace(marker, "<span style='color:" + settings.accentcolor + "'>" + marker + "</span>");
line = line.replace(marker, "<span style='color:" + settings.accentcolor + "'>" + marker.replaceAll("*", "•") + "</span>");
}
});