https://github.com/yosida95/romaji
bi-directional translator for Katakana and Romaji
https://github.com/yosida95/romaji
katakana romaji translator
Last synced: about 1 month ago
JSON representation
bi-directional translator for Katakana and Romaji
- Host: GitHub
- URL: https://github.com/yosida95/romaji
- Owner: yosida95
- License: bsd-3-clause
- Created: 2023-04-27T15:14:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-16T09:57:12.000Z (over 1 year ago)
- Last Synced: 2025-02-17T19:17:00.534Z (4 months ago)
- Topics: katakana, romaji, translator
- Language: Go
- Homepage: https://pkg.go.dev/github.com/yosida95/romaji
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
romaji
======romaji is a bi-directional translator for Katakana and Romaji.
Example
-------.. code-block:: go
package main
import "github.com/yosida95/romaji"
func main() {
kana := "トウキョウ"
roman := romaji.FromKanaHepburn(kana)
fmt.Printf("%q -> %q\n", kana, roman)// Output:
// "トウキョウ" -> "TOKYO"
}Documentation
-------------- `pkg.go.dev `_
License
-------`romaji`_ is distributed under the BSD 3-Clause license.
PLEASE READ ./LICENSE carefully and follow its clauses to use this software.Author
------yosida95_
.. _romaji: https://github.com/yosida95/romaji
.. _yosida95: https://yosida95.com/