droped: bullet rendering

This commit is contained in:
quenousimporte 2023-11-13 10:18:08 +01:00
parent 5f3b48a704
commit d396e379d4
1 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,6 @@ var defaultsettings =
titlebydefault: false, titlebydefault: false,
linksinnewtab: true, linksinnewtab: true,
colors: true, colors: true,
bulletrendering: "•",
password: "", password: "",
sync: false, sync: false,
tagsinlists: true, tagsinlists: true,
@ -1990,7 +1989,7 @@ function rawline2html(line, index, options)
{ {
if (line.startsWith(marker)) if (line.startsWith(marker))
{ {
line = line.replace(marker, "<span style='color:" + settings.accentcolor + "'>" + marker.replaceAll("*", settings.bulletrendering) + "</span>"); line = line.replace(marker, "<span style='color:" + settings.accentcolor + "'>" + marker + "</span>");
} }
}); });