mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Support for the special macros used by the distutils documentation.
This commit is contained in:
parent
8823accd1f
commit
638ae9d0bb
1 changed files with 21 additions and 0 deletions
21
Doc/perl/distutils.perl
Normal file
21
Doc/perl/distutils.perl
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# LaTeX2HTML support for distutils.sty.
|
||||
|
||||
package main;
|
||||
|
||||
sub do_cmd_command {
|
||||
return use_wrappers(@_[0], '<code>', '</code>');
|
||||
}
|
||||
|
||||
sub do_cmd_option {
|
||||
return use_wrappers(@_[0], '<font face="sans-serif">', '</font>');
|
||||
}
|
||||
|
||||
sub do_cmd_filevar {
|
||||
return use_wrappers(@_[0], '<font face="sans-serif"></i>', '</i></font>');
|
||||
}
|
||||
|
||||
sub do_cmd_XXX {
|
||||
return use_wrappers(@_[0], '<b>** ', ' **</b>');
|
||||
}
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue