-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
x/net/html: Data should be unescaped #71324
Comments
Related Issues (Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in this discussion.) |
Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only. For questions please refer to https://github.com/golang/go/wiki/Questions |
@seankhliao I want it to be EXACTLY The documentation even states:
|
x/net/html only escapes what is necessary, nbsp is not in that list, so you'll never get a literal |
How is that not a bug? How can I properly deal with say |
When you call I don't understand what you are trying to do. If you want help using the x/net/html package, please use a forum, not the issue tracker. See https://go.dev/wiki/Questions. Thanks. |
Go version
go 1.23
Output of
go env
in your module/workspace:What did you do?
See demo code: https://go.dev/play/p/JgbH2_H7MyF
According to documentation: https://pkg.go.dev/golang.org/x/net/html#Node
In my code sample, you can see that the output is escaped.
I am replacing all non-whitespace characters to
(non-breaking whitespace).What did you see happen?
The output should not be escaped. The ampersands got escaped.
What did you expect to see?
You can see in the output many
 
. It should be
:The text was updated successfully, but these errors were encountered: