From 2f672b57a13613a1c45a90ac0ebdd5a2c968765b Mon Sep 17 00:00:00 2001 From: Alexey Alekhin Date: Fri, 15 Nov 2024 02:50:02 +0100 Subject: [PATCH] remove debug print --- outline.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outline.ts b/outline.ts index ffd6b98..9a8290f 100644 --- a/outline.ts +++ b/outline.ts @@ -21,7 +21,7 @@ export function splitIntoChunks(markdown: string): Chunk[] { : 0; chunks.push({ type: currentType, content, level }); currentChunk = []; - console.log("committing chunk", currentType, "\n", content, "\n"); + // console.log("committing chunk", currentType, "\n", content, "\n"); currentType = null; } }