Open
Description
I'm trying to use backtick inside of a template string, but it seems like the plug in is not correctly detecting the escaped backtick. Here's a sample of the code.
template: html`
<div
class="classname"
:style="background-image: url(\`${cardImage ??
imgPlaceholder}');background-size: cover; cursor: pointer;\`
>
<div class="classname">
<span class="classname" style=""
>{{ title }}</span
>
</div>
</div>
`,
Could this be a bug?