From f01cd8426f59b631651efd6956eaff10f2c860a6 Mon Sep 17 00:00:00 2001 From: echicken <> Date: Sun, 23 Sep 2018 18:04:01 +0000 Subject: [PATCH] Remove some stupid debug log thingiedoodles --- exec/load/markdown.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/exec/load/markdown.js b/exec/load/markdown.js index 85e79ae99d..0780de17ce 100644 --- a/exec/load/markdown.js +++ b/exec/load/markdown.js @@ -86,7 +86,6 @@ Markdown.prototype.colorize_console = function (str) { } Markdown.prototype.render_text_console = function (text) { - log('rtc ' + text); const self = this; var ret = text.replace(/\*([^\*]+)\*/g, function (m, c) { return '\1+\1h' + c + '\1-'; @@ -165,11 +164,9 @@ Markdown.prototype.render_table = function () { } out += s + ' | '; } - log('prett ' + out); while (strip_ctrl(out).length > self.columns - 2) { out = out.substring(0, out.length - 1); } - log('posttt ' + out); ret.push(out); if (i == 0) { out = '|-'; -- GitLab