summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2018-07-21 12:18:17 -0400
committerLeonard Richardson <leonardr@segfault.org>2018-07-21 12:18:17 -0400
commitfebd6cea8cdd665a6f13c7040c3ff7d60d350e41 (patch)
treea2bb8f95277df3b41b2ba93f7a834b132079e842 /NEWS.txt
parent5cc46e31a63a4c0f2ae0109bc0216e91c4241766 (diff)
Fixed a problem where the html.parser tree builder interpreted
a string like '&foo ' as the character entity '&foo;' [bug=1728706]
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/NEWS.txt b/NEWS.txt
index bca2098..ecaccad 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -7,7 +7,10 @@
the ones introduced at the top level. [bug=1718787]
* Added a new formatter, "html5", which represents void elements
- elements as "<element>" rather than "<element/>". [bug=1716272]
+ as "<element>" rather than "<element/>". [bug=1716272]
+
+* Fixed a problem where the html.parser tree builder interpreted
+ a string like "&foo " as the character entity "&foo;" [bug=1728706]
* Improved the warning given when no parser is specified. [bug=1780571]