You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One use case is for documentation. For example, at the top of each CSS file I might include a title and a description. The JSON could then be used to output that meta information along with the actual CSS.
The text was updated successfully, but these errors were encountered:
I also wanted supporting comments, however, I was troubled because there is something difficult to solve. As we know, comments blocks can be located at anywhere in CSS. So, sometimes it's difficult to put comments informations into JSON:
/* field decorator */
.my-field {
padding-left:1em; /* left padding *//* background color */background-color:/* don't fix this */#fff/* white */
}
I know this is ugly example. but, it's possible. :/
If you have any idea to handle these cases, please let me know. :)
Thanks! :)
One use case is for documentation. For example, at the top of each CSS file I might include a title and a description. The JSON could then be used to output that meta information along with the actual CSS.
The text was updated successfully, but these errors were encountered: