diff --git a/main.js b/main.js index 3160fca..ddcb89b 100644 --- a/main.js +++ b/main.js @@ -15,7 +15,8 @@ var defaultsettings = enablenetwork: false, titlebydefault: false, linksinnewtab: true, - colors: true + colors: true, + bulletrendering: "•" }; //builtin @@ -409,11 +410,6 @@ var snippets = [ insert: "— ", cursor: 0 }, -{ - command: "/*", - hint: "Bullet point", - insert: "• " -}, { command: "/comment", hint: "Comment", @@ -2138,7 +2134,7 @@ function applycolors() { if (line.startsWith(marker)) { - line = line.replace(marker, "" + marker.replaceAll("*", "•") + ""); + line = line.replace(marker, "" + marker.replaceAll("*", settings.bulletrendering) + ""); } });