From 3fcb2793e712ca950243d138770165c0aa5bd902 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Mon, 24 Feb 2025 21:39:52 +0700 Subject: [PATCH] fix md links again --- src/service/template/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/service/template/index.ts b/src/service/template/index.ts index ed211f8..ea5856a 100644 --- a/src/service/template/index.ts +++ b/src/service/template/index.ts @@ -90,6 +90,8 @@ export class Template< const output = processor.processSync(text).contents.toString(); if (markdown) { + console.log("HERE--->", output, transformMDLinks(output)); + return transformMDLinks(output); }