What's Changed
- README.md generated by Open-Set-Go 🚀 by @ymw0407 in #1
- Issue Template generated by Open-Set-Go 🚀 by @ymw0407 in #2
- Pull-Request Template generated by Open-Set-Go 🚀 by @ymw0407 in #3
- CONTRIBUTING.md generated by Open-Set-Go 🚀 by @ymw0407 in #4
New Contributors
Full Changelog: v0.0.2...v1.0.0
-
ClassifySyllables Function added
- ClassifySyllables for Hangeul's Consonant, Vowel, and Undefined
-
ComposeHangeul Function added
- ComposeHangeul only available with Hangeul's syllable (' ', '!','a-z'... is not available)
- e.g.
"english" -> [], JamoError.ErrImpossibleToCompose
- e.g.
"한ㅇ글" -> [], JamoError.ErrImpossibleToCompose
- e.g.
"한 글" -> [], JamoError.ErrImpossibleToCompose
- e.g.
"한글!" -> [], JamoError.ErrImpossibleToCompose
- e.g.
"ㅎㅏㄴ글" -> [], JamoError.ErrImpossibleToCompose
- e.g.
- ComposeHangeul supporting any other decomposing Hangeul options(Qwerty or Jamo option)
- e.g.
"ㅇㅔㅔㅅㅣ" -> ["예시"], nil
- e.g.
"ㅇㅕㅣㅅㅣ" -> ["예시"], nil
- e.g.
- ComposeHangeul, if it can be combined into several other characters, it returns all of them.
- e.g.
"ㄱㄱㅏㄱㄱㅣ" -> ["깍기", "까끼"], nil
- e.g.
"ㄱㄱㅏㄱㅅㅅㅣ" -> ["깏시", "깍씨"], nil
- e.g.
- ComposeHangeul only available with Hangeul's syllable (' ', '!','a-z'... is not available)
-
README.md & CONTRIBUTING.md & IssueTemplates & PullRequestTemplate added