Sublime-CSS-Format
Sublime-CSS-Format copied to clipboard
CSS Formatting for Sublime Text
Hi team , I am facing a issue that when i apply to beautify then the code are indent properly but the text colors are not getting applied to it...
``` py code = re.sub(r'([A-Za-z-](\+_?)?):([^;\{]+[;\}])', r'\1: \3', code) # add space after properties' : ``` 属性名后的冒号后加空格功能,未考虑less的两种[merge](http://lesscss.org/features/#merge-feature)语法,上面的代码中已改了您的正则,实现了上述功能
Thanks for such nice plugin. I found some stange words appearing after format css. and I figured out. ``` css #googlemap .gm-style{filter: url('data:image/svg+xml;charset=utf-8,#filter'); -webkit-filter: grayscale(100%); filter: grayscale(100%); } .remodal1{content:"";display: block;...
Is there a way I can ignore `calc()` when formatting? The very natural: ``` css calc(#{$content-width} - (#{$spacing-unit} * 2)); ``` transforms into: ``` css calc(# { $content-width } -...
Sometimes I want to be able to restrict the formatting just to the selected text.
when i format this ``` // body { // clear: both; // } ``` i got this (note: it has syntax error) ``` // body { // clear: both; //...
I love this plugin, but this issue is really annoying. The format on save is a perfect idea, and it is implemented without this behaviour in other plugins, but in...
The expanded option turns an [interpolated variable rule](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#interpolation_) into new lines, presumably because it uses { & } brackets. For example: ``` &.pt_#{$type} ``` Becomes: ``` &.pt_# { $type }...