Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b531618

Browse files
committed
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.
1 parent c05cbb0 commit b531618

3 files changed

Lines changed: 19 additions & 4 deletions

File tree

Doc/Makefile.deps

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
166166
../lib/libuserdict.tex \
167167
../lib/libdis.tex \
168168
../lib/libxmllib.tex \
169+
../lib/libpyexpat.tex \
169170
../lib/libqueue.tex \
170171
../lib/liblocale.tex \
171172
../lib/libbasehttp.tex \
@@ -187,6 +188,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
187188
../lib/libthreading.tex \
188189
../lib/internet.tex \
189190
../lib/netdata.tex \
191+
../lib/markup.tex \
190192
../lib/libpycompile.tex \
191193
../lib/libcompileall.tex \
192194
../lib/libshlex.tex \

Doc/lib/lib.tex

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,6 @@ \chapter*{Front Matter\label{front}}
215215
\input{libasyncore}
216216

217217
\input{netdata} % Internet Data Handling
218-
\input{libsgmllib}
219-
\input{libhtmllib}
220-
\input{libxmllib}
221218
\input{libformatter}
222219
\input{librfc822}
223220
\input{libmimetools}
@@ -237,7 +234,13 @@ \chapter*{Front Matter\label{front}}
237234
\input{libnetrc}
238235
\input{librobotparser}
239236

240-
\input{librestricted}
237+
\input{markup} % Structured Markup Processing Tools
238+
\input{libsgmllib}
239+
\input{libhtmllib}
240+
\input{libxmllib}
241+
\input{libpyexpat}
242+
243+
\input{librestricted} % Restricted Execution
241244
\input{librexec}
242245
\input{libbastion}
243246

Doc/lib/markup.tex

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
\chapter{Structured Markup Processing Tools
2+
\label{markup}}
3+
4+
Python supports a variety of modules to work with various forms of
5+
structured data markup. This includes modules to work with the
6+
Standard Generalized Markup Language (SGML) and the Hypertext Markup
7+
Language (HTML), and several interfaces for working with the
8+
Extensible Markup Language (XML).
9+
10+
\localmoduletable

0 commit comments

Comments
 (0)