Should be able to filter individual files before applying group filters. Probably in the following fashion:
$less = new Asset_Less('css/print.less', array('media' => 'print'));
$less->add_filter('Less');
$css = $less->filter(); // now a Asset_CSS is returned
echo $css;
Although perhaps the $less->html() method could filter and echo the Asset_CSS version itself. Not sure.
Should be able to filter individual files before applying group filters. Probably in the following fashion:
Although perhaps the $less->html() method could filter and echo the Asset_CSS version itself. Not sure.