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
Hello,
Am trying to parse an html to edit some tags attributes then rewrite the file back again
the parser has ability to read and write the file correctly to its original state unless you make any change in attributes list.
Am trying to change this element attributes by inserting a new attribute key and value
<input matInput (keyup)="applyFilter($event)" placeholder="Ex. IMEI" #input>
the output is slightly different <input matInput keyup applyFilter event placeholder="Ex. IMEI" input demoAttr="demot_Test">
<input matInput keyup applyFilter event placeholder="Ex. IMEI" input demoAttr="demot_Test">
as you can notice the attributes had changed. I with if there is any support.
Thank you
The text was updated successfully, but these errors were encountered:
fix issue #145
f6d406c
No branches or pull requests
Hello,
Am trying to parse an html to edit some tags attributes then rewrite the file back again
the parser has ability to read and write the file correctly to its original state unless you make any change in attributes list.
Am trying to change this element attributes by inserting a new attribute key and value
<input matInput (keyup)="applyFilter($event)" placeholder="Ex. IMEI" #input>
the output is slightly different
<input matInput keyup applyFilter event placeholder="Ex. IMEI" input demoAttr="demot_Test">
as you can notice the attributes had changed. I with if there is any support.
Thank you
The text was updated successfully, but these errors were encountered: