2012-03-02 11:57:28 -08:00
|
|
|
package DDG::Goodie::Capitalize;
|
|
|
|
|
|
|
|
use DDG::Goodie;
|
2012-05-23 19:05:08 -07:00
|
|
|
|
|
|
|
triggers startend => 'capitalize', 'uppercase', 'upper case';
|
2012-03-02 11:57:28 -08:00
|
|
|
|
2012-03-06 18:54:04 -08:00
|
|
|
zci is_cached => 1;
|
2012-03-20 21:08:12 -07:00
|
|
|
zci answer_type => "capitalize";
|
2012-03-06 18:54:04 -08:00
|
|
|
|
2012-03-06 20:25:57 -08:00
|
|
|
handle remainder => sub { uc ($_) };
|
2012-03-02 11:57:28 -08:00
|
|
|
|
|
|
|
1;
|