Add a new environment in the Python docs markup: seealso*. This is similar

to seealso, but does not add the "See also:" header or put the content in a
box in the HTML version.

Updated the description of \seeurl to better indicate when it should be used;
the old description was written before we had \seetitle.
This commit is contained in:
Fred Drake 2001-11-30 18:09:54 +00:00
parent 89d63cc450
commit 5ed35fd149
3 changed files with 41 additions and 11 deletions

View file

@ -1725,6 +1725,12 @@ sub do_env_seealso{
. '</div>');
}
sub do_env_seealsostar{
return ("<div class=\"seealso-simple\">\n "
. @_[0]
. '</div>');
}
sub do_cmd_seemodule{
# Insert the right magic to jump to the module definition. This should
# work most of the time, at least for repeat builds....