| Text::Sass(3pm) | User Contributed Perl Documentation | Text::Sass(3pm) |
Text::Sass - A Naieve Perl implementation of Sass & SCSS.
See Text/Sass.pm
use Text::Sass;
my $sass = Text::Sass->new();
print $sass->sass2css(<<'EOF');
$font-stack: Helvetica, sans-serif
$primary-color: #333
body
font: 100% $font-stack
color: $primary-color
EOF
print $sass->scss2css(<<'EOF');
$font-stack: Helvetica, sans-serif;
$primary-color: #333;
body {
font: 100% $font-stack;
color: $primary-color;
}
EOF
This is a pure perl implementation of Sass and SCSS languages. Currently it implements only a subset of the specification.
Sass project page <http://sass-lang.com>
my $oSass = Text::Sass->new;
my $sSass = $oSass->css2sass($sCSS);
my $sCSS = $oSass->sass2css($sSass);
my $sCSS = $oSass->scss2css($sScss);
All variables are currently global. This can be quite unpleasant.
See README
Text::Sass::XS - Perl binding for libsass. Consider using it if you need higher level of language conformance and/or faster execution.
CSS::Sass - Yet another libsass binding.
Plack::Middleware::File::Sass - Sass and SCSS support for all Plack frameworks. Can use this module as one of its backends.
Roger Pettett <rmp@psyphi.net>
Set $Text::Sass::DEBUG = 1;
Nothing required beyond $DEBUG
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.10 or, at your option, any later version of Perl 5 you may have available.
| 2022-12-06 | perl v5.36.0 |