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
Create a tool that looks up words in the index by searching a given string - like grep. Three boxes laid out like this:
Initial Medial Final (^string) (box two) (box three$)
Input boxes are blank but any typing automatically drops down list of possibilities (similar to creedictionary.com)
Use Rules: Try ē = ê = e, ō = ô = o, etc
"Enter" locks the visible list for scrolling Include minimize arrow on
The text was updated successfully, but these errors were encountered:
Would be neat to also plumb in the morpheme editor capabilities once we get that underway
Sorry, something went wrong.
The easiest implementation (that should accommodate your 3 cases) would be to use the wildcard search in ES:
Something like:
string* (initial search) *string* (medial search) *string (final search)
It could also handle cases where you weren't sure of the middle of a word (or a vowel length):
// eg searching for wihtamawêw w*tamawêw
This should be pretty easy to implement, thanks for the feedback 🙏
No branches or pull requests
Create a tool that looks up words in the index by searching a given string - like grep.
Three boxes laid out like this:
Initial Medial Final
(^string) (box two) (box three$)
Input boxes are blank but any typing automatically drops down list of possibilities (similar to creedictionary.com)
Use Rules: Try ē = ê = e, ō = ô = o, etc
"Enter" locks the visible list for scrolling
Include minimize arrow on
The text was updated successfully, but these errors were encountered: