changed: display a bullet instead of * in list
This commit is contained in:
parent
c1967c2f60
commit
e615af8250
2
main.js
2
main.js
|
@ -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>");
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue