droped: bullet rendering
This commit is contained in:
parent
5f3b48a704
commit
d396e379d4
3
main.js
3
main.js
|
@ -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>");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue