Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sprql/syllabify.ex
Split Russian words into syllables (фонетическое деление слова на слоги)
https://github.com/sprql/syllabify.ex
Last synced: about 1 month ago
JSON representation
Split Russian words into syllables (фонетическое деление слова на слоги)
- Host: GitHub
- URL: https://github.com/sprql/syllabify.ex
- Owner: sprql
- License: mit
- Created: 2020-05-17T15:28:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-17T16:39:45.000Z (over 4 years ago)
- Last Synced: 2024-10-30T16:56:29.775Z (2 months ago)
- Language: Elixir
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Syllabify
Split Russian words into syllables (фонетическое деление слова на слоги)
## Installation
Add `syllabify` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:syllabify, "~> 0.1.0"}
]
end
```### Usage
```elixir
iex> Syllabify.syllabify("Вдохновение")
["Вдо", "хно", "ве", "ни", "е"]
```Documentation can be found at [https://hexdocs.pm/syllabify](https://hexdocs.pm/syllabify).