diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-07 06:00:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-07 06:00:36 (GMT) |
commit | 44835d8e7ad180413f85743d53831cb648c4549a (patch) | |
tree | 0b52d91df19751cdabd959f8b0bebd1caf706256 /Doc/tools/sgmlconv | |
parent | de6dc1e11cacc07089489d334a6cb1c524076e5b (diff) | |
download | cpython-44835d8e7ad180413f85743d53831cb648c4549a.zip cpython-44835d8e7ad180413f85743d53831cb648c4549a.tar.gz cpython-44835d8e7ad180413f85743d53831cb648c4549a.tar.bz2 |
Move & update a comment.
Add support for the \ulink macro.
Diffstat (limited to 'Doc/tools/sgmlconv')
-rw-r--r-- | Doc/tools/sgmlconv/conversion.xml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/Doc/tools/sgmlconv/conversion.xml b/Doc/tools/sgmlconv/conversion.xml index eee120a..9a747e8 100644 --- a/Doc/tools/sgmlconv/conversion.xml +++ b/Doc/tools/sgmlconv/conversion.xml @@ -52,14 +52,14 @@ <content/> </macro> <macro name="shortversion"/> + <!-- These are broken: we need to re-order the optional and required + parameters, making the optional parameter the content for the + element. latex2esis.py is not powerful enough to handle this. + --> <macro name="versionadded"> <attribute name="info" optional="yes"/> <attribute name="version"/> </macro> - <!-- This is broken: we need to re-order the optional and required - parameters, making the optional parameter the content for the - element. The processor is not powerful enough to handle this. - --> <macro name="versionchanged"> <attribute name="info" optional="yes"/> <attribute name="version"/> @@ -696,6 +696,14 @@ <macro name="email"> <content/> </macro> + <macro name="ulink"> + <!-- order of the parameters makes this difficult; + we'll need to fix it up tp <ulink href="...">...</ulink> + in docfixer.py. + --> + <child name="text"/> + <child name="href"/> + </macro> <macro name="url"> <content/> </macro> |