question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Proposal: refactor css placeholder for TemplateLiteral

See original GitHub issue

CSS 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,

bug1 bug2

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,

bug

will comment more details

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:12 (11 by maintainers)

github_iconTop GitHub Comments

1reaction
fiskercommented, Nov 4, 2019

@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 with css placeholders to parse and then restore to html placeholders, need test later. first I’m going to finish this proposal.

0reactions
thorn0commented, Nov 4, 2019

will be lowercased and not get restored

Sounds like a manifestation of #4090, which will be fixed by #6778.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found