raffia icon indicating copy to clipboard operation
raffia copied to clipboard

CSS/Sass/SCSS/Less parser, all in one.

Results 5 raffia issues
Sort by recently updated
recently updated
newest added

```rs pub struct AnPlusB { pub a: i32, pub b: i32, pub span: Span, } ``` It does not express the original meaning. examples: ```css // a: 1 / b:...

Fixes #7 by - Don't consume the source when `Dedent` token should be returned. - Keep `Dedent` tokens in the state, because they don't have anything to actually consume -...

Hello! Thanks for the amazing crate! I'm exploring the [Raffia Playground](https://raffia-play.vercel.app/), looking forward to use the raffia for stylesheet parsing. I'm not really into sass tabbed syntax, however, as I...

The following is valid Less syntax to define a map. Notably, this map includes a key:value pair (the first one) where the key starts with a digit/numeric character. ```less @foo:...

help wanted

This is a bit of an odd scenario, but bear with me. I have the following less code. ```less .foo { @bar: #fff; --baz: '@{bar}'; --qux: '@{darken(@bar, 50%)}'; } ```...