diff options
author | Fred Drake <fdrake@acm.org> | 1999-01-19 17:11:23 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-01-19 17:11:23 (GMT) |
commit | d6ced7d199b29f39e40dc887d6e83caadc506a66 (patch) | |
tree | 2114b9f0120178d243af8f68c11daed542be6660 /Doc/tools/sgmlconv | |
parent | f82e4ab61733c321b583e049700b10c5375d6781 (diff) | |
download | cpython-d6ced7d199b29f39e40dc887d6e83caadc506a66.zip cpython-d6ced7d199b29f39e40dc887d6e83caadc506a66.tar.gz cpython-d6ced7d199b29f39e40dc887d6e83caadc506a66.tar.bz2 |
convert(): Change the element name remapping to convert <refmodule>
to <module link>.
Diffstat (limited to 'Doc/tools/sgmlconv')
-rwxr-xr-x | Doc/tools/sgmlconv/docfixer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/tools/sgmlconv/docfixer.py b/Doc/tools/sgmlconv/docfixer.py index d843490..2aa7284 100755 --- a/Doc/tools/sgmlconv/docfixer.py +++ b/Doc/tools/sgmlconv/docfixer.py @@ -676,6 +676,7 @@ def convert(ifp, ofp): "lineii": ("row", {}), "lineiii": ("row", {}), "lineiv": ("row", {}), + "refmodule": ("module", {"link": "link"}), }) fixup_table_structures(doc) fixup_rfc_references(doc) |