From 18578fdd43efe3a00130a4957e2292fa98e18ca8 Mon Sep 17 00:00:00 2001 From: ubinquitous Date: Thu, 28 Nov 2024 01:13:52 +0900 Subject: [PATCH] fix issue --- utils/documentCompiler.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/documentCompiler.ts b/utils/documentCompiler.ts index ef5f0b2..b2f8717 100644 --- a/utils/documentCompiler.ts +++ b/utils/documentCompiler.ts @@ -49,10 +49,13 @@ const utilityTagCompiler = (contents: string) => { const assetTagComipler = (contents: string) => { return contents - .replace(/<사진 \{(.*?)\}>(.*?)<\/사진>/g, '') + .replace( + /<사진 \{(.*?)\}>(.*?)<\/사진>/g, + '', + ) .replace( /<비디오 \{(.*?)\}>(.*?)<\/비디오>/g, - '', + '', ); };