start implementing morphology on readings
[scpubgit/stemmatology.git] / lib / Text / Tradition / Language / French.pm
CommitLineData
cca4f996 1package Text::Tradition::Language::French;
2
3#use Flemm;
4use Text::Tradition::Collation::Reading::WordForm;
5
6=head1 NAME
7
8Text::Tradition::Language::French - language-specific modules for French
9
10=head1 DESCRIPTION
11
12Implements morphology lookup for French words in context.
13
14=head1 SUBROUTINES
15
16=head2 lemmatize( $text )
17
18Evaluates the string using the Flemm package, and returns the results.
19
20=cut
21
22sub lemmatize {
23 my $text = shift;
24
25
26}
27
28=head2 word_lookup( $word )
29
30Looks up a word using the Flemm package, and returns the possible results.
31It is better to use L<lemmatize> for context sensitivity.
32
33=cut
34
35sub word_lookup {
36 my $word = shift;
37
38}
39
40=head1 LICENSE
41
42This package is free software and is provided "as is" without express
43or implied warranty. You can redistribute it and/or modify it under
44the same terms as Perl itself.
45
46=head1 AUTHOR
47
48Tara L Andrews E<lt>aurum@cpan.orgE<gt>