A simple Greek stemmer algorithm.
This algorithm is based on this paper from George Ntais.
[greek_stemmer "0.0.3"]
(use 'greek_stemmer.core)
(greek_stemmer.core/stem "ΚΙΘΑΡΙΣΤΑΣ")
;; "ΚΙΘΑΡΙΣΤ"
Original work: bandito
- Fork it ( http://github.com//greek_stemmer/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
lein midje
will run all tests.
lein midje namespace.*
will run only tests beginning with "namespace.".
lein midje :autotest
will run all the tests indefinitely. It sets up a
watcher on the code files. If they change, only the relevant tests will be
run again.
Distributed under the Eclipse Public License, the same as Clojure.