20 lines
394 B
Perl
20 lines
394 B
Perl
package DDG::Goodie::Unidecode;
|
|
# ABSTRACT: return an ASCII version of the search query
|
|
|
|
use DDG::Goodie;
|
|
use Text::Unidecode;
|
|
|
|
triggers startend => "unidecode";
|
|
|
|
zci is_cached => 1;
|
|
zci answer_type => "convert_to_ascii";
|
|
|
|
handle remainder => sub {
|
|
my $u = unidecode $_;
|
|
# unidecode output sometimes contains trailing spaces
|
|
$u =~ s/\s+$//;
|
|
return $u;
|
|
};
|
|
|
|
1;
|