Skip to content

Commit 05e9d4c

Browse files
committedMar 15, 2025·
remove constant logging
1 parent 082ec7d commit 05e9d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/webpage/markdown.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ class MarkDown {
743743
html.childNodes.length == 1 &&
744744
html.childNodes[0].childNodes.length === 1 &&
745745
html.childNodes[0].childNodes[0];
746-
console.log(box.cloneNode(true), html.cloneNode(true));
746+
//console.log(box.cloneNode(true), html.cloneNode(true));
747747
//TODO this may be slow, may want to check in on this in the future if it is
748748
if (!box.hasChildNodes() || html.isEqualNode(Array.from(box.childNodes)[0])) {
749749
//console.log("no replace needed");

0 commit comments

Comments
 (0)
Please sign in to comment.