From 56f3ca55330b188a47e00343f6471fc023a8cd97 Mon Sep 17 00:00:00 2001 From: multipliedtwice Date: Mon, 19 Aug 2024 08:44:43 +0700 Subject: [PATCH] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c376c78..97b67df 100644 --- a/src/index.ts +++ b/src/index.ts @@ -203,7 +203,7 @@ export const processText = ( // Step 1: Temporarily replace special cases text = temporarilyReplaceSpecialCases(text, effectiveIgnorePatterns); - // Steps 2 to 5: Same as before + // Steps 2 to 5: Replace backticks text = escapeBackticks(text); text = replaceEmptyCodeBlocks(text); const blockSegments = iterateMatches(blockRegex, true, text);