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
In both XML(Document) and in the Javascript HTML DOM, CreateTextNode(value) creates a node where the value is encoded as text.
document.body.appendChild(document.createTextNode("Hello <b>World</b>"));
will append
Hello <b>World</b>
to the body.
Not so in HAP.
I would say that HAP's behavior is wrong. Fixing it would be quite a breaking change, but for 2.x I think it should be corrected.
The text was updated successfully, but these errors were encountered:
Hello @gliljas ,
Thank you for the pull and the information.
We will look at it if that's too much a breaking change. If that's the case, as you said, we will move it to when we will be ready to make the v2.x.
Best Regards,
Jonathan
Performance Libraries context.BulkInsert(list, options => options.BatchSize = 1000); Entity Framework Extensions • Entity Framework Classic • Bulk Operations • Dapper Plus
context.BulkInsert(list, options => options.BatchSize = 1000);
Runtime Evaluation Eval.Execute("x + y", new {x = 1, y = 2}); // return 3 C# Eval Function • SQL Eval Function
Eval.Execute("x + y", new {x = 1, y = 2}); // return 3
Sorry, something went wrong.
JonathanMagnan
No branches or pull requests
In both XML(Document) and in the Javascript HTML DOM, CreateTextNode(value) creates a node where the value is encoded as text.
document.body.appendChild(document.createTextNode("Hello <b>World</b>"));
will append
Hello <b>World</b>
to the body.
Not so in HAP.
I would say that HAP's behavior is wrong. Fixing it would be quite a breaking change, but for 2.x I think it should be corrected.
The text was updated successfully, but these errors were encountered: