"content" property is always enclosed in ""
Open
- Dominant language
- JavaScript
- Stars
- 284
- Forks
- 17
- PR merge metrics
- No merged PRs in 30d
Description
for example:
```
content : 'attr(data-label)',
```
renders as
```
content: "attr(data-label)";
```
instead of
```
content: attr(data-label);
```
Is not easy to fix this issue...
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by reproducing the reported conversion from the `content` property to generated CSS, comparing the quoted and unquoted outputs shown in the issue. Trace the serialization path for this property and consider the issue complete when `attr(data-label)` is emitted without enclosing quotes while ordinary string values retain their expected formatting.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100