~gbrlsnchs/kana

CLI tool for transliterating romaji to hiragana and katakana

#4 Empty lines are deleted

~gbrlsnchs filed ticket on kana todo

1 year, 9 months ago

deb111f Add missing submodule references

1 year, 10 months ago

#kana

kana is a CLI tool and also a library for transliterating romaji text to either hiragana (ひらがな) or katakana (カタカナ).

#Usage

The following snippets only shortly demonstrate the features. For a more thorough documentation, see kana(1).

$ kana <<< 'ohayougozaimasu'
おはようございます
#Katakana
$ kana --katakana <<< 'suupa mario'
スーパ マリオ
#Extended katakana
$ kana --katakana --extended <<< 'supagetti'
スパゲッティ
#Punctuation marks
$ kana --punctuation <<< 'soudesune.'
そうですね。
$ kana --punctuation <<< 'kawaii~'
かわいい〜
$ kana --punctuation <<< 'nani?!'
なに?!
$ kana --punctuation <<< "'hiragana'"
「ひらがな」
$ kana --punctuation <<< '"katakana"'
『カタカナ』
$ kana --punctuation <<< '([{<sugoi>}])'
([{【すごい】}])
#Forcing prolongation (hiragana only)
$ kana --force-prolongation <<< 'raamen'
らーめん
#Toggling between kanas
$ kana --kana-toggle='@' <<< 'watashiha@gaburieru@desu'
わたしはガブリエルです
#Toggling between raw text and kanas
$ kana --raw-toggle='#' <<< 'watashiha#J-rock#gasukidesu'
わたしはJ-rockがすきです
#Resetting prolongation
$ kana --katakana --prolongation-reset='^' <<< 'Pikachu^u'
ピカチュウ
#Using small vowels
$ kana --katakana --vowel-shortener='_' <<< 'Keeshi_i'
ケーシィ
#Adding virtual stops
$ kana --katakana --virtual-stop='%' <<< 'U%u'
ウッウ

#Contributing

Use the mailing list to

  • Report issues
  • Request new features
  • Send patches
  • Discuss development in general

If applicable, a new ticket will be submitted by maintainers to the issue tracker in order to track confirmed bugs or new features.

#Building and distributing the project

This project is built entirely in Zig. Build it as you wish for local usage, and package it to your distro of preference in accordance with its policy on how to package Zig projects.

You can generate man pages in doc/ by using scdoc.