1Spellunker(3)         User Contributed Perl Documentation        Spellunker(3)
2
3
4

NAME

6       Spellunker - Pure perl spelling checker implementation
7

DESCRIPTION

9       Spellunker is pure perl spelling checker implementation.  You can use
10       this spelling checker as a library.
11
12       And this distribution provides spellunker and spellunker-pod command.
13
14       If you want to use this spelling checker in test script, you can use
15       Test::Spellunker.
16

METHODS

18       my $spellunker = Spellunker->new();
19           Create new instance.
20
21       $spellunker->load_dictionary($filename_or_fh)
22           Loads stopwords from $filename_or_fh and adds them to the on-memory
23           dictionary.
24
25       $spellunker->add_stopwords(@stopwords)
26           Add some @stopwords to the on memory dictionary.
27
28       $spellunker->clear_stopwords();
29           Crear the information of stop words.
30
31       $spellunker->check_word($word);
32           Check the word looks good or not.
33
34       @bad_words = $spellunker->check_line($line)
35           Check the text and returns bad word list.
36

HOW DO I USE CUSTOM DICTIONARY?

38       You can put your personal dictionary at "$HOME/.spellunker.en".
39

WHY DOES SPELLUNKER NOT IGNORE PERL CODE?

41       In some case, Spellunker does not ignore the perl code. You need to
42       wrap it by C< >.
43

CONTRIBUTION

45       You can send me pull-request on github
46

LICENSE

48       Copyright (C) tokuhirom
49
50       This library is free software; you can redistribute it and/or modify it
51       under the same terms as Perl itself.
52

AUTHOR

54       tokuhirom <tokuhirom@gmail.com>
55
56
57
58perl v5.32.0                      2020-07-28                     Spellunker(3)
Impressum