From ab54188ba4603bacbf7d658246f81a15eb920b51 Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Fri, 9 Feb 2024 02:15:53 -0500 Subject: [PATCH] Fix small typo --- shared/naturalcrit/markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/naturalcrit/markdown.js b/shared/naturalcrit/markdown.js index 479fc682a..cf7907650 100644 --- a/shared/naturalcrit/markdown.js +++ b/shared/naturalcrit/markdown.js @@ -506,7 +506,7 @@ function MarkedVariables() { } if(match[1]) { // Block Definition const label = match[2] ? match[2].trim().replace(/\s+/g, ' ').toLowerCase() : null; // Trim edge spaces and shorten blocks of whitespace to 1 space - const content = match[3] ? match[3].trim().replace(/\s+/g, ' ') : null; // Trim edge spaces and shorten blocks of whitespace to 1 space + const content = match[3] ? match[3].trim().replace(/[ \t]+/g, ' ') : null; // Trim edge spaces and shorten blocks of whitespace to 1 space linksQueue.push( { type : 'varDefBlock',