We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A script that will take data_mined.json as input and syllabify each phrase. Expected result is a JSON file with format:
data_mined.json
[{ "phrase": "Post title", "url": "http://9vo.lt/news/post1", "metadata": [ { "word": "Post", "syllables": ["post"], "accent_on": 0 }, { "word": "title", "syllables": ["ti", "tle"], "accent_on": 0 } ] }, { "phrase": "Post Timofti", "url": "http://9vo.lt/news/post1", "metadata": [ { "word": "Post", "syllables": ["post"], "accent_on": 0 }, { "word": "Timofti", "syllables": ["Ti", "mof", "ti"], "accent_on": 1 } ] }]
Expected output file name is data_syllabified.json.
data_syllabified.json
The text was updated successfully, but these errors were encountered:
https://github.com/halostatue/text-hyphen
Sorry, something went wrong.
Need to check how it works with Romanian words.
As there are always problems with Romanian some solutions might be:
Some JS hyphenators with Romanian language support:
Silabisitor gives you the accent as well and is available as a Java thingie
No branches or pull requests
A script that will take
data_mined.json
as input and syllabify each phrase. Expected result is a JSON file with format:Expected output file name is
data_syllabified.json
.The text was updated successfully, but these errors were encountered: