Latin stemmers

The stemmers/latin module gathers stemmers for the latin language.

Summary

Modules under the talisman/stemmers/latin namespace:

schinke

Reference: http://snowball.tartarus.org/otherapps/schinke/intro.html

Stemming latin words being notoriously difficult, this stemmer will output two different stems: one considering the given word is a noun, and another considering the word is a verb.

import schinke from 'talisman/stemmers/latin/schinke';

schinke('aquila');
>>> {
  noun: 'aquil',
  verb: 'aquila'
}