From 00a9a5321c17d4c87cf59e939620d7bcfe056485 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sun, 20 Oct 2024 12:39:16 +0200 Subject: [PATCH] Relative link for tagRegex import --- plug-api/lib/tags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-api/lib/tags.ts b/plug-api/lib/tags.ts index 6352e005..133710e3 100644 --- a/plug-api/lib/tags.ts +++ b/plug-api/lib/tags.ts @@ -4,7 +4,7 @@ import { type ParseTree, traverseTree, } from "@silverbulletmd/silverbullet/lib/tree"; -import { tagRegex } from "$common/markdown_parser/constants.ts"; +import { tagRegex } from "../../common/markdown_parser/constants.ts"; export function updateITags(obj: ObjectValue, frontmatter: FrontMatter) { const itags = [obj.tag, ...frontmatter.tags || []];