mirror of https://github.com/python/cpython.git
Created a new chapter on structured markup processing, including the
existing SGML, HTML, & XML support, and providing a home for the new XML support as it becomes documented.
This commit is contained in:
parent
c05cbb0527
commit
b5316188ee
|
@ -166,6 +166,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
|
||||||
../lib/libuserdict.tex \
|
../lib/libuserdict.tex \
|
||||||
../lib/libdis.tex \
|
../lib/libdis.tex \
|
||||||
../lib/libxmllib.tex \
|
../lib/libxmllib.tex \
|
||||||
|
../lib/libpyexpat.tex \
|
||||||
../lib/libqueue.tex \
|
../lib/libqueue.tex \
|
||||||
../lib/liblocale.tex \
|
../lib/liblocale.tex \
|
||||||
../lib/libbasehttp.tex \
|
../lib/libbasehttp.tex \
|
||||||
|
@ -187,6 +188,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
|
||||||
../lib/libthreading.tex \
|
../lib/libthreading.tex \
|
||||||
../lib/internet.tex \
|
../lib/internet.tex \
|
||||||
../lib/netdata.tex \
|
../lib/netdata.tex \
|
||||||
|
../lib/markup.tex \
|
||||||
../lib/libpycompile.tex \
|
../lib/libpycompile.tex \
|
||||||
../lib/libcompileall.tex \
|
../lib/libcompileall.tex \
|
||||||
../lib/libshlex.tex \
|
../lib/libshlex.tex \
|
||||||
|
|
|
@ -215,9 +215,6 @@ and how to embed it in other applications.
|
||||||
\input{libasyncore}
|
\input{libasyncore}
|
||||||
|
|
||||||
\input{netdata} % Internet Data Handling
|
\input{netdata} % Internet Data Handling
|
||||||
\input{libsgmllib}
|
|
||||||
\input{libhtmllib}
|
|
||||||
\input{libxmllib}
|
|
||||||
\input{libformatter}
|
\input{libformatter}
|
||||||
\input{librfc822}
|
\input{librfc822}
|
||||||
\input{libmimetools}
|
\input{libmimetools}
|
||||||
|
@ -237,7 +234,13 @@ and how to embed it in other applications.
|
||||||
\input{libnetrc}
|
\input{libnetrc}
|
||||||
\input{librobotparser}
|
\input{librobotparser}
|
||||||
|
|
||||||
\input{librestricted}
|
\input{markup} % Structured Markup Processing Tools
|
||||||
|
\input{libsgmllib}
|
||||||
|
\input{libhtmllib}
|
||||||
|
\input{libxmllib}
|
||||||
|
\input{libpyexpat}
|
||||||
|
|
||||||
|
\input{librestricted} % Restricted Execution
|
||||||
\input{librexec}
|
\input{librexec}
|
||||||
\input{libbastion}
|
\input{libbastion}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
\chapter{Structured Markup Processing Tools
|
||||||
|
\label{markup}}
|
||||||
|
|
||||||
|
Python supports a variety of modules to work with various forms of
|
||||||
|
structured data markup. This includes modules to work with the
|
||||||
|
Standard Generalized Markup Language (SGML) and the Hypertext Markup
|
||||||
|
Language (HTML), and several interfaces for working with the
|
||||||
|
Extensible Markup Language (XML).
|
||||||
|
|
||||||
|
\localmoduletable
|
Loading…
Reference in New Issue