naomi icon indicating copy to clipboard operation
naomi copied to clipboard

Dot before placeholder in template literal breaks css highlighting

Open pedroscaff opened this issue 6 years ago • 0 comments

Dot before placeholder in template literal breaks css highlighting.

image

import { css } from 'react-emotion'

const classFoo = 'foo'

const style = css`
  width: 100px;
  // this works
  .foo {
  	width: 100px;
  }
  // this doesn't work
  .${classFoo} {
  	width: 100px;
  }
`

pedroscaff avatar Nov 18 '18 20:11 pedroscaff