diff --git a/main.js b/main.js
index 9e619ae..5abb1c3 100644
--- a/main.js
+++ b/main.js
@@ -1982,7 +1982,7 @@ function applycolorsonline(line, index, options)
if (line.startsWith("#"))
{
line = line.replace(/(#* )/, "$1"); // to check!
- line = "" + line + "";
+ line = "" + line + "";
}
// bold and italics
@@ -1991,7 +1991,7 @@ function applycolorsonline(line, index, options)
{
temp = line.substring(2);
}
- temp = temp.replace(/\*\*([^\*]*)\*\*/g, "**$1**");
+ temp = temp.replace(/\*\*([^\*]*)\*\*/g, "**$1**");
temp = temp.replace(/\*([^\*]*)\*/g, "*$1*");
if (line.startsWith("* "))
@@ -2108,7 +2108,6 @@ function applycolorsonline(line, index, options)
return line;
}
-var boldstyle = "font-weight: bold;";
function applycolors(currentonly)
{
if (!settings.colors)