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-11-06 12:53:46 -08:00
|
|
|
primary_example_queries 'capitalize this';
|
|
|
|
secondary_example_queries 'uppercase that';
|
|
|
|
description 'capitalize a string';
|
|
|
|
name 'Capitalize';
|
|
|
|
code_url 'https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/Capitalize.pm';
|
|
|
|
category 'conversions';
|
|
|
|
topics 'programming';
|
|
|
|
attribution twitter => 'crazedpsyc',
|
|
|
|
cpan => 'CRZEDPSYC' ;
|
|
|
|
|
|
|
|
|
2012-03-06 20:25:57 -08:00
|
|
|
handle remainder => sub { uc ($_) };
|
2012-03-02 11:57:28 -08:00
|
|
|
|
|
|
|
1;
|