From 32f60df108e8d6556b8e788aa4e63088a8d306a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sun, 4 Jun 2023 21:19:15 -0400 Subject: [PATCH] refactor: remove log --- src/topics/posts.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/topics/posts.js b/src/topics/posts.js index 84bdc4220c..ce56931481 100644 --- a/src/topics/posts.js +++ b/src/topics/posts.js @@ -379,7 +379,6 @@ module.exports = function (Topics) { content = content.split('\n').filter(line => !line.trim().startsWith('>')).join('\n'); // Scan post content for topic links const matches = [...content.matchAll(backlinkRegex)]; - console.log('match', matches); if (!matches) { return 0; }