| OLD | NEW |
| 1 .. _markup: | 1 .. _markup: |
| 2 | 2 |
| 3 ********************************** | 3 ********************************** |
| 4 Structured Markup Processing Tools | 4 Structured Markup Processing Tools |
| 5 ********************************** | 5 ********************************** |
| 6 | 6 |
| 7 Python supports a variety of modules to work with various forms of structured | 7 Python supports a variety of modules to work with various forms of structured |
| 8 data markup. This includes modules to work with the Standard Generalized Markup | 8 data markup. This includes modules to work with the Standard Generalized Markup |
| 9 Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces | 9 Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces |
| 10 for working with the Extensible Markup Language (XML). | 10 for working with the Extensible Markup Language (XML). |
| 11 | 11 |
| 12 It is important to note that modules in the :mod:`xml` package require that | 12 It is important to note that modules in the :mod:`xml` package require that |
| 13 there be at least one SAX-compliant XML parser available. The Expat parser is | 13 there be at least one SAX-compliant XML parser available. The Expat parser is |
| 14 included with Python, so the :mod:`xml.parsers.expat` module will always be | 14 included with Python, so the :mod:`xml.parsers.expat` module will always be |
| 15 available. | 15 available. |
| 16 | 16 |
| 17 The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the | 17 The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the |
| 18 definition of the Python bindings for the DOM and SAX interfaces. | 18 definition of the Python bindings for the DOM and SAX interfaces. |
| 19 | 19 |
| 20 | 20 |
| 21 .. toctree:: | 21 .. toctree:: |
| 22 | 22 |
| 23 html.rst | 23 html.rst |
| 24 html.parser.rst | 24 html.parser.rst |
| 25 html.entities.rst | 25 html.entities.rst |
| 26 pyexpat.rst | 26 xml.etree.elementtree.rst |
| 27 xml.dom.rst | 27 xml.dom.rst |
| 28 xml.dom.minidom.rst | 28 xml.dom.minidom.rst |
| 29 xml.dom.pulldom.rst | 29 xml.dom.pulldom.rst |
| 30 xml.sax.rst | 30 xml.sax.rst |
| 31 xml.sax.handler.rst | 31 xml.sax.handler.rst |
| 32 xml.sax.utils.rst | 32 xml.sax.utils.rst |
| 33 xml.sax.reader.rst | 33 xml.sax.reader.rst |
| 34 xml.etree.elementtree.rst | 34 pyexpat.rst |
| OLD | NEW |