Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _markup: |
| 2 | |
| 3 | ********************************** |
| 4 | Structured Markup Processing Tools |
| 5 | ********************************** |
| 6 | |
| 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 |
| 9 | Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces |
| 10 | for working with the Extensible Markup Language (XML). |
| 11 | |
| 12 | It is important to note that modules in the :mod:`xml` package require that |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 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 |
| 15 | available. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 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. |
| 19 | |
| 20 | |
| 21 | .. toctree:: |
| 22 | |
Georg Brandl | 9087b7f | 2008-05-18 07:53:01 +0000 | [diff] [blame] | 23 | html.parser.rst |
| 24 | html.entities.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | pyexpat.rst |
| 26 | xml.dom.rst |
| 27 | xml.dom.minidom.rst |
| 28 | xml.dom.pulldom.rst |
| 29 | xml.sax.rst |
| 30 | xml.sax.handler.rst |
| 31 | xml.sax.utils.rst |
| 32 | xml.sax.reader.rst |
| 33 | xml.etree.elementtree.rst |