Proposal: refactor css placeholder for TemplateLiteral
See original GitHub issueCSS in template literals
is first added in #2102 @prettier-placeholder
is choosed to be a placeholder for template quasis.
Now problem is TemplateLiteral could be anywhere of the css code
as tag
${as-tag}{}
@prettier-placeholder{}
tag selector became a at-rule
, but we handled in at-rule
as part of tag
foo${as-part-of-tag}{}
foo@prettier-placeholder{}
foo[${as-part-of-selector}]{}
foo[@prettier-placeholder]{}
foo@prettier-placeholder
is not a legal tag,postcss-selector-parser
can parse currectly, but might cause problem in future,
as value
div{
font: bar${as-part-of-selector}
}
div{
font: bar@prettier-placeholder
}
bar@prettier-placeholder
will be to values, a word
and a at-word
,
will comment more details
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (11 by maintainers)
Top Results From Across the Web
Template literal placeholder syntax should not be used in ...
Template literal placeholder syntax should not be used in regular strings ... Template strings allow developers to embed variables or expressions in strings...
Read more >placeholder - CSS: Cascading Style Sheets - MDN Web Docs
The ::placeholder CSS pseudo-element represents the placeholder text in an or element.
Read more >Use CSS to render input form placeholder attribute from label ...
In other words, I want to use CSS (perhaps generated content) to dynamically add a placeholder attribute on the input and make the...
Read more >Understanding Template Literals in JavaScript - DigitalOcean
A placeholder is represented by ${} , with anything within the curly ... You can also use the trim() method on a template...
Read more >::placeholder | CSS-Tricks - CSS-Tricks
The ::placeholder pseudo element (or a pseudo class, in some cases, depending on the browser implementation) allows you to style the ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@yveslange turns out, it’s kind related, template literal in css prop, will be lowercased and not get restored. If i use the same placeholder logic for html, the issues will got fixed.
your issue template literal as css delc is more complicated, but I already come up a possible solution,
html placeholders
in css can be replaced withcss placeholders
to parse and then restore tohtml placeholders
, need test later. first I’m going to finish this proposal.Sounds like a manifestation of #4090, which will be fixed by #6778.