summaryrefslogtreecommitdiff
path: root/imworkingon/contribs.yml
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-04-22 13:16:52 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-04-22 13:16:52 -0600
commitd35f70cee3a45fc93c8acecbb8f115a0b04cfcd9 (patch)
tree47ace24ce53365a6bde3aacdbc15d9852adc4725 /imworkingon/contribs.yml
parente2916f44c42f2f83fc4311f2be656472005b54ec (diff)
contribs: port changes from go x/net/html to std html
Diffstat (limited to 'imworkingon/contribs.yml')
-rw-r--r--imworkingon/contribs.yml14
1 files changed, 13 insertions, 1 deletions
diff --git a/imworkingon/contribs.yml b/imworkingon/contribs.yml
index 044d9ee..20e96c8 100644
--- a/imworkingon/contribs.yml
+++ b/imworkingon/contribs.yml
@@ -94,7 +94,7 @@
want to hold up the main work.
- urls:
- https://github.com/golang/net/pull/208
- - https://go-review.googlesource.com/c/net/+/580855/2
+ - https://go-review.googlesource.com/c/net/+/580855
tags: [Go, docs]
desc: |
The `html.EscapeString` and `html.UnescapeString` was once the
@@ -105,3 +105,15 @@
This will provide a consistent base for fixing bugs in
`html.UnescapeString` that were found when working on the
documentation parser in gotk4.
+- urls:
+ - https://github.com/golang/go/pull/66970
+ tags: [Go]
+ desc: |
+ The `html.EscapeString` and `html.UnescapeString` was once the
+ same between `"golang.org/x/net/html"` and std `"html"`, but has
+ been slowly drifting apart since 2012. This PR ports over
+ documentation and performance improvements from x/net to std.
+
+ This will provide a consistent base for fixing bugs in
+ `html.UnescapeString` that were found when working on the
+ documentation parser in gotk4.