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

43 lines
959 B
Perl

package DDG::Goodie::SassToCss;
# ABSTRACT: Write an abstract here
use DDG::Goodie;
use YAML::XS 'LoadFile';
use POSIX;
use Text::Trim;
use strict;
use warnings;
zci answer_type => 'sass_to_css';
zci is_cached => 1;
# Triggers - http://docs.duckduckhack.com/walkthroughs/calculation.html#triggers
triggers startend => share('triggers.txt')->slurp;
handle remainder => sub {
# Return unless the remainder is empty or contains online or tool
return unless ( $_ =~ /(^$|online|tool|utility)/i );
return '',
structured_answer => {
data => {
title => 'Sass to Css Converter',
subtitle => 'Enter SASS below, then click the button to convert it to CSS'
},
templates => {
group => 'text',
item => 0,
options => {
content => 'DDH.sass_to_css.content'
}
}
};
};
1;