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
AFAIU, this parser is what HTMLRewriter in CloudFlare workers uses under the hood.
I have a simple worker which transforms the HTML received as request body and adds a new attribute to each node. It seems that there is a bug, and the attribute change is not applied to <desc> element.
AFAIU, this parser is what
HTMLRewriter
in CloudFlare workers uses under the hood.I have a simple worker which transforms the HTML received as request body and adds a new attribute to each node. It seems that there is a bug, and the attribute change is not applied to
<desc>
element.Example:
Now, I send a POST request with the following body:
Output:
As you can see,
data-custom
attribute is added to every node but<desc>
.The text was updated successfully, but these errors were encountered: