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,
linksinnewtab: true,
colors: true,
bulletrendering: "•",
password: "",
sync: false,
tagsinlists: true,
@ -1990,7 +1989,7 @@ function rawline2html(line, index, options)
{
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>");
}
});