summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libhtmllib.tex
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-10-27 15:46:16 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2003-10-27 15:46:16 (GMT)
commitb546be24488b613c74b4bcc307e02c78c362a067 (patch)
tree3a5966ad27445afc1c4c26bdcdd13505b0de99bf /Doc/lib/libhtmllib.tex
parent405a7952fde22e2b03ddaaf0c1f429fcb926f127 (diff)
downloadcpython-b546be24488b613c74b4bcc307e02c78c362a067.zip
cpython-b546be24488b613c74b4bcc307e02c78c362a067.tar.gz
cpython-b546be24488b613c74b4bcc307e02c78c362a067.tar.bz2
Fix inaccuracy: all entities from XHTML 1.0 are supported (according to text further down in this file)
Diffstat (limited to 'Doc/lib/libhtmllib.tex')
-rw-r--r--Doc/lib/libhtmllib.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libhtmllib.tex b/Doc/lib/libhtmllib.tex
index 41b647c..59065f4 100644
--- a/Doc/lib/libhtmllib.tex
+++ b/Doc/lib/libhtmllib.tex
@@ -64,8 +64,8 @@ The module defines a single class:
\begin{classdesc}{HTMLParser}{formatter}
This is the basic HTML parser class. It supports all entity names
-required by the HTML 2.0 specification (\rfc{1866}). It also defines
-handlers for all HTML 2.0 and many HTML 3.0 and 3.2 elements.
+required by the XHTML 1.0 Recommendation (\url{http://www.w3.org/TR/xhtml1}).
+It also defines handlers for all HTML 2.0 and many HTML 3.0 and 3.2 elements.
\end{classdesc}
@@ -79,8 +79,8 @@ handlers for all HTML 2.0 and many HTML 3.0 and 3.2 elements.
implement some of the SGML syntax not used in
``HTML as deployed'' and which isn't legal
for XHTML.}
- \seemodule{htmlentitydefs}{Definition of replacement text for HTML
- 2.0 entities.}
+ \seemodule{htmlentitydefs}{Definition of replacement text for XHTML 1.0
+ entities.}
\seemodule{sgmllib}{Base class for \class{HTMLParser}.}
\end{seealso}