From 890eee4b8ef7adf19aba4202476bf7fb0e399abc Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Sun, 12 Jan 2025 14:15:12 -0600 Subject: [PATCH] get rid of useless log --- src/webpage/markdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpage/markdown.ts b/src/webpage/markdown.ts index 0c2f4f6..598a38e 100644 --- a/src/webpage/markdown.ts +++ b/src/webpage/markdown.ts @@ -741,7 +741,7 @@ class MarkDown { const html = this.makeHTML({keep: true}); //TODO this may be slow, may want to check in on this in the future if it is if (!box.hasChildNodes() || html.isEqualNode(Array.from(box.childNodes)[0])) { - console.log("no replace needed"); + //console.log("no replace needed"); } else { box.innerHTML = ""; box.append(html);