We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I wrote v-if attribute with nested double quotes and single quotes in Slm template. Slm syntax highliting breaks at nested quotes.
v-if
Reproduction code.
<template lang="slm"> div v-if="state === 'initialized'" slot </template> <script> export default { data: { state: "foobar" } }; </script> <style> </style>
The text was updated successfully, but these errors were encountered:
This is because I used text.pug.slm for embedded SLM, but it should be text.jade.slm with https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-slm.
text.pug.slm
text.jade.slm
Sorry, something went wrong.
2003bc8
remove syntax highlighting hacks
b5215c4
no longer necessary, thanks octref vuejs/vetur#1134 (comment)
No branches or pull requests
Info
Problem
I wrote
v-if
attribute with nested double quotes and single quotes in Slm template.Slm syntax highliting breaks at nested quotes.
Reproducible Case
Reproduction code.
The text was updated successfully, but these errors were encountered: