-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Pseudo-classes formatted incorrectly and inconsistently with @page #661
Comments
What version are you using? What command are your running? What language are your writing? |
As I stated in my comment, it's css. Original issue: I am using the packages latest version. |
You're using the html-beautifier, so <!-- Input, expected not to change-->
<style>
@page :first {}
</style>
<!-- Output on first run -->
<style>
@page: first {}
</style>
<!-- Output on second run -->
<style>
@page:first {}
</style> |
I'm having the same issue. What did you do to get it fixed? |
If you are using the sublime plugin, you will have to wait until @victorporof releases a version that contains the fix @bitwiseman provided. Until then, I believe there is no solution for it. |
I'll release a new version in the next week or so. If you know where the plugin is on your drive you might be able to overwrite the files with the current HEAD of master. |
@dylanmensaert Let me know as soon as the @bitwiseman's fix reaches stable. I'll update the sublime plugin then. |
Thanks a lot guys! |
Pseudo-classes are being formatted incorrectly and inconsistently with @page:
@page :first
->@page:first
->@page: first
This is a problem since the last format is invalid css.
Is there a temporary fix where I can disable formatting of pseudo-classes?
The text was updated successfully, but these errors were encountered: