From 64c98678bca898f2441ee39e395f15b0ec559229 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sun, 20 Oct 2024 12:40:43 +0200 Subject: [PATCH] Adjust import for tagRegex --- 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 || []];