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
Formatter adds space after Liquid tag inside JS string. I've not made any configuration changes so this is using the default settings.
I have the following code:
<script> document.body.style.setProperty('--pg-MobileReassurances-fontSize', '{{ section.settings.font_size }}px'); </script>
After saving it becomes the following and breaks existing CSS because of the whitespace it has introduced:
<script> document.body.style.setProperty('--pg-MobileReassurances-fontSize', '{{ section.settings.font_size }} px'); </script>
The text was updated successfully, but these errors were encountered:
fixes template tag indentations being applied
74f5ae4
see: panoply/vscode-liquid#133
This one is solved in #138
Sorry, something went wrong.
No branches or pull requests
Formatter adds space after Liquid tag inside JS string. I've not made any configuration changes so this is using the default settings.
I have the following code:
After saving it becomes the following and breaks existing CSS because of the whitespace it has introduced:
The text was updated successfully, but these errors were encountered: