You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just noticed the Smidge output uses single quotes in HTML rather than double.
I know both are technically legal but I also know that many people use double quotes in HTML and single quotes in JS. Any chance they could be changed? So this: <link href='/sc/69a3dbf6.1cf661e7.css.v100' rel='stylesheet' type='text/css'/> becomes this: <link href="/sc/69a3dbf6.1cf661e7.css.v100" rel="stylesheet" type="text/css"> (note the forward slash is also removed as it's no longer necessary in HTML5 AFAIK. You could probably remove the "type" attribute as well).
Thnx
The text was updated successfully, but these errors were encountered:
Hi @craigs100 ! That can be done :) It would be super awesome if you'd be able to submit a PR with the change and then I can get another release out once it's merged. Do you think you'd be able to help?
Just noticed the Smidge output uses single quotes in HTML rather than double.
I know both are technically legal but I also know that many people use double quotes in HTML and single quotes in JS. Any chance they could be changed? So this:
<link href='/sc/69a3dbf6.1cf661e7.css.v100' rel='stylesheet' type='text/css'/>
becomes this:<link href="/sc/69a3dbf6.1cf661e7.css.v100" rel="stylesheet" type="text/css">
(note the forward slash is also removed as it's no longer necessary in HTML5 AFAIK. You could probably remove the "type" attribute as well).Thnx
The text was updated successfully, but these errors were encountered: