Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyome22/kaede
Kaede supports you to convert roman text to hiragana, katakana, and half-katakana.
https://github.com/kyome22/kaede
Last synced: 3 months ago
JSON representation
Kaede supports you to convert roman text to hiragana, katakana, and half-katakana.
- Host: GitHub
- URL: https://github.com/kyome22/kaede
- Owner: Kyome22
- License: mit
- Created: 2018-10-07T14:01:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-10T11:55:25.000Z (about 1 year ago)
- Last Synced: 2024-10-12T06:34:35.112Z (3 months ago)
- Language: Swift
- Homepage:
- Size: 3.62 MB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kaede
Kaede supports you to convert roman text to hiragana, katakana, and half-katakana.
## Usage
```swift
import Kaedelet kaede = Kaede()
let hiragana = kaede.convertRomanToKana("konnnichiha")
// hiragana => "こんにちは"let katakana = kaede.convertKanaToKatakana(hiragana)
// katakana => "コンニチハ"let halfKatakana = kaede.convertKanaToHalfKatakana(hiragana)
// halfKatakana => "コンニチハ"
```