I'm having issues with Handlebar triple brackets formatting when inside a script tag. Attaching a gif for this issue as it's hard to explain in words.
Any help would be appreciated.
<script>
window.cyrTabs = {{ {JSONstringify slice} }}
</script>
I've found a workaround for now. Turned this window.cyrTabs = {{ {JSONstringify slice} }}
into var cyrTabs = {{{JSONstringify slice}}}
For some reason, using a var/const/let fixes this issue in VS code.