HookyQR / VSCodeBeautify

Enable js-beautify (https://github.com/beautify-web/js-beautify) in VS Code
MIT License
606 stars 180 forks source link

Contains extra space. #343

Closed Aromatibus closed 4 years ago

Aromatibus commented 4 years ago

NOTE: Please provide code snippets instead of screen shots. Your issue needs to be replicated, and we need the failing code (text) to do this.

Provide the settings you use: I am Japanese. I use Google Translate. Sorry for the strange remark. Use a unified format with double quotes.Calling the function as follows inserts a space. There is no problem using single quotes in functions.

Space is in between : "HowToUse" > " HowToUse"

<span onmouseover="ShowDesc("HowToUse");" onmouseout="ShowDesc("HowToUse");"> <span onmouseover="ShowDesc(" HowToUse");" onmouseout="ShowDesc(" HowToUse");">

There is no space between them.

<span onmouseover="ShowDesc('HowToUse');" onmouseout="ShowDesc('HowToUse');"> <span onmouseover="ShowDesc('HowToUse');" onmouseout="ShowDesc('HowToUse');">

What should I do now?