Fred Drake | 86bc7b0 | 1998-12-02 17:21:35 +0000 | [diff] [blame^] | 1 | These scripts and Makefile fragment are used to convert the Python |
| 2 | documentation in LaTeX format to SGML. XML is also supported as a |
| 3 | target, but is unlikely to be used. |
| 4 | |
| 5 | This material is highly preliminary and incomplete. The XML omnibus |
| 6 | package developed by the Python XML-SIG is required. See |
| 7 | http://www.python.org/sigs/xml-sig/ for more information on the |
| 8 | package. |
| 9 | |
| 10 | To convert a document to SGML: |
| 11 | |
| 12 | cd Doc/<document-dir> |
| 13 | make -f ../tools/sgmlconv/make.rules TOOLSDIR=../tools |
| 14 | |
| 15 | To generate XML instead, use: |
| 16 | |
| 17 | cd Doc/<document-dir> |
| 18 | make -f ../tools/sgmlconv/make.rules TOOLSDIR=../tools xml |
| 19 | |
| 20 | Note that building the second target format is fast because both |
| 21 | conversions use the same intermediate format (an ESIS event stream). |
| 22 | |
| 23 | Please send comments and bug reports to python-docs@python.org. |