Open casid opened 9 months ago
@template.core.components.paragraph(content = @` ${localize("foo"}${localize("bar")}<br>${baz()} `)
Misses a closing brace after localize("foo". Correct is:
localize("foo"
@template.core.components.paragraph(content = @` ${localize("foo")}${localize("bar")}<br>${baz()} `)
This should be highlighted by the plugin.
Misses a closing brace after
localize("foo"
. Correct is:This should be highlighted by the plugin.