-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Cheers, just getting started with Syllabore but want to express my appreciation for the authors' work. So far this solution fits my needs the best of all I could find on Github.
This might be a mix of general questions and bug reports here, so I may split them into distinct issues.
I did read all the guides on the wiki. My version is 2.3.2.
- So, in order to control last syllable's coda cluster I tried to set the probability for trailing consonants at 1 using the deprecated
OfTrailingConsonantIsSequencefunction, since this is the only function I found which is able to configure that. Documentation suggests to useOfTrailingConsonantsbut then it appears to me I'm unable to assure the syllable does end with a coda cluster at all.
A side question there:
-
Should a
SyllableGeneratorwith no vowel graphemes provided return an empty string? Also guide 1.1.2 mentions that onset and coda are optional, is that from a linguistic perspective or it is intended to be a constraint forSyllableGenerator?
Are vowels intended to be mandatory to specify forSyllableGeneratorto function?
If I have no probabilities specified forSyllableGeneratormaking coda cluster to occur all the time, I get an exception due to an empty string generated as a result. -
Also I noticed that when I try to override
DefaultSyllableGenerator(andSyllableGeneratoras well) trailing consonant cluster without specifying the probability, it never returns a syllable containing the coda cluster specified. (And in case of Syllable generator, an empty string is returned as mentioned above).
And tiny remarks for the guides:
- 3.1 Section has a typo?
Quote: "Names with three or more consonants in a rowlookare also difficult to read. Our NameFilter allows use to also identify patterns we want to avoid through regular expressions:" - At the end of the section a deprecated
UsingProvidermethod is being used.
Thanks for your time!