From 1861c7db695e8e0147f633eff672cc13334bae1e Mon Sep 17 00:00:00 2001 From: David Bolack Date: Wed, 13 Dec 2023 21:59:02 -0600 Subject: [PATCH] Remove stray console.logs. --- shared/naturalcrit/markdown.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shared/naturalcrit/markdown.js b/shared/naturalcrit/markdown.js index 2c2f356c5..3b7981435 100644 --- a/shared/naturalcrit/markdown.js +++ b/shared/naturalcrit/markdown.js @@ -241,10 +241,7 @@ const underline = { tokenizer(src, tokens) { const uRegex = /^\b_(?![_\s])(.*?[^_\s])_\b/m; const match = uRegex.exec(src); - console.log('Looking'); if(match?.length) { - console.log('found!'); - console.log(match); return { type : 'underline', raw : match[0], @@ -253,7 +250,6 @@ const underline = { } }, renderer(token) { - console.log() return `${this.parser.parseInline(token.tokens)}`; } };