-
Notifications
You must be signed in to change notification settings - Fork 2
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
[HTML Formatting] Typescript input values un-camelcased when using wrap_attributes: force. #123
Labels
Comments
Before<form id="searchFormContainer" [formGroup]="searchForm" class="flex-column"></form> After<form id="searchFormContainer"
[formgroup]="searchForm"
class="flex-column"></form> I recommend creating an issue over at https://github.com/prettydiff/prettydiff and letting @prettydiff know. |
Fixed on the Pretty Diff side. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Take the following snippet for example:
<form id="searchFormContainer" [formGroup]="searchForm" class="flex-column"></form>
When running this through the playground, you can see that it ends up changing the case in [formGroup], resulting in:
<form id="searchFormContainer" [formgroup]="searchForm" class="flex-column"></form>
This completely breaks the compiler.
YAML:
HTML: beautifiers: - Pretty Diff - JS-Beautify wrap_attributes: force
The text was updated successfully, but these errors were encountered: