From 0837ac50b90b6da79c1aca08055b6dc4351c5f4e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 20 Nov 2025 02:44:05 +0530 Subject: [PATCH] fix: go parser path --- server/src/markdownify/markdown.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/markdownify/markdown.ts b/server/src/markdownify/markdown.ts index 8666f785..c4709e6e 100644 --- a/server/src/markdownify/markdown.ts +++ b/server/src/markdownify/markdown.ts @@ -16,6 +16,7 @@ const ext = // Build path to the binary **inside the same folder** export const GO_MARKDOWN_PARSER_PATH = path.join( __dirname, + "html-to-markdown", `html-to-markdown${ext}` );