Tyler Akins

Results 57 issues of Tyler Akins

This would cover the code added in issue #30

The current state of the code has about three different token-ish implementations. This should be consolidated down to one. The tokenizer is also really slow on lengthy CSS strings and...

Examples: - First list background properties, then box model properties, etc - Alphabetical - Sort based on a list that's configurable Problems: How would this work with Sass/Less? Move all...

Add options, perhaps via custom rules, to manipulate values. ``` css color: white; background-color: #FF0000; border-color: rgb(127, 126, 125); ``` This would be shorter as the following: ``` css color:...

Instead of dictating, it would be better to have an option to prefer upper or lower case characters for values.

Force some properties to always use variables and give errors when that does not happen. Eg: Disallow `background-color: white` and allow `background-color: $bgColor`

If I support Sass, I might as well support Less as well. Their syntax is so similar.

Also should allow custom properties and better support for rendering engine specific properties.

Instead of having custom code for every property, implement a grammar parser when possible to reduce the amount of code and make maintenance easier. The grammar is typically at the...

It doesn't make sense to have this: ``` css div { background-color: green; background: url('/images/bg.jpg'); } ``` In the above example, `background` wipes out `background-color`. This program should issue a...