w3suli

Results 11 comments of w3suli

Almost everything that came to my mind the last day was said. I looked at the codes and saw that it was possible to set up dependencies. I do not...

@yyyc514 Is it possible to call a language in another language by modifying its elements? I started to create scss by rewriting the original css. goes well so far, but...

Thanks for the help! I'm exploring the possibilities. I hope I can put together a single compact solution and avoid duplication.

@yyyc514 I'm still thinking about what to do with stylus. If you need to add css properties, which solution is good? Currently used: ``` border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border ``` Shorter version: ``` border-(bottom|top)-(left|right)-radius|border-image-(outset|repeat|slice|source|width)|border-(bottom|left|right|top)-(color|style|width)|border-(bottom|collapse|color|image|left|radius|right|spacing|style|top|width)|border...

I also saw a block solution, but there it finally generates a regular expression full of treasures out of the array with extra steps. In your opinion, which solution should...

So let's use it like this: PROPERTIES.join('|') It's not good this way: > `border-(left|right|top|bottom)-(style|radius|width)` In this case, non-existent properties are also formed.

Yes css is good. The problem is the stylus. The list is important there. The language is so simplistic that the point of simplification is that you know the list....

The stylus leaves everything out, so incorrectly marked elements can be formed if there is no list. Unfortunately for Stylus, the list of html members also seems to be necessary...

If possible, I'd like to avoid the list. But I wouldn't get a wrong selection either. The most interesting are the nested elements where you have to decide whether a...

The prism: As I see it examines the lines above each other. If the indentation of the top row is less than that of the bottom row, it marks the...