From 625f5d29732237119052d66e22df3714ea6654db Mon Sep 17 00:00:00 2001 From: kwaroran Date: Thu, 9 Nov 2023 20:05:48 +0900 Subject: [PATCH] [feat] romanizer --- src/ts/plugins/romanizer.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ts/plugins/romanizer.ts b/src/ts/plugins/romanizer.ts index 1d0ea5be..90768814 100644 --- a/src/ts/plugins/romanizer.ts +++ b/src/ts/plugins/romanizer.ts @@ -27,6 +27,7 @@ export function romanizer(texts:string[]){ text += koreanDict.jong[code[2]] } language.korean++ + result += text continue } @@ -50,6 +51,8 @@ export function romanizer(texts:string[]){ language.roman++ continue } + + result += char } fullResult.push(result) }