Skip to content

Commit

Permalink
[feat] romanizer
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaroran committed Nov 9, 2023
1 parent b023ee5 commit 625f5d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ts/plugins/romanizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export function romanizer(texts:string[]){
text += koreanDict.jong[code[2]]
}
language.korean++
result += text
continue
}

Expand All @@ -50,6 +51,8 @@ export function romanizer(texts:string[]){
language.roman++
continue
}

result += char
}
fullResult.push(result)
}
Expand Down

0 comments on commit 625f5d2

Please sign in to comment.