zeroclickinfo-goodies/lib/DDG/Goodie/Capitalize.pm

24 lines
578 B
Perl
Raw Normal View History

2012-03-02 11:57:28 -08:00
package DDG::Goodie::Capitalize;
use DDG::Goodie;
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
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' ;
handle remainder => sub { uc ($_) };
2012-03-02 11:57:28 -08:00
1;