lessphp icon indicating copy to clipboard operation
lessphp copied to clipboard

LESS compiler written in PHP

Results 100 lessphp issues
Sort by recently updated
recently updated
newest added

This pull request provides a solution for the issue raised in #206. The main change is to improve upon the regex pattern that is used to munge a folder structure...

pr: bug-fix

I created an extra command line script to compile an entire directory of less files to another directory.

pr: enhancement

Allows ccompile to create the directories it needs to store $out

pr: behaviour-change

Import files once as proposed by @ysor in issue #396.

pr: behaviour-change

I believe I just forgot to enter a pound sign in front of the color code I entered in the Cherry plugin, but I can not even get back into...

Hi, will this project updated to the newest Less version? Cheers

this ``` $lessc = new lessc(); $lessc->setPreserveComments(true); $lessc->setFormatter("classic"); ``` Changes line endings? I'll attach two screenshots from bbedit on mac, one generated without and one with the second line ![withoutcomments](https://user-images.githubusercontent.com/3535798/32981621-353cf786-cc78-11e7-837e-e1d0b4af4d1a.png)...

This ``` .recurse(@n, @i:0) when ( @i =< @n ) { .foo { border:@i; } .recurse( @n , (@i + 1) ); } .recurse (5); ``` fails without a clear...

Hi, I am using your plugin in my custom wordpress theme. But when i check my theme by using ThemeCheck plugin: https://wordpress.org/plugins/theme-check/ I got the following errors: WARNING: Both DOS...

It would be nice to get support for source maps, which simplifies the debugging of less code. `lessc` adds support for source maps starting from 1.4.0 (...here's the issue: https://github.com/less/less.js/issues/1050)...

enhancement