diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-06 21:18:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-06 21:18:55 (GMT) |
commit | bc7101dff008a5e901756114b9b66f2c592f98c3 (patch) | |
tree | a80b8a04ee84d5b0d0dfe410e488159cba67ef80 /Doc/perl/howto.perl | |
parent | bc772f466ced4cf4a6cbd09b36ad9a81c8f1f422 (diff) | |
download | cpython-bc7101dff008a5e901756114b9b66f2c592f98c3.zip cpython-bc7101dff008a5e901756114b9b66f2c592f98c3.tar.gz cpython-bc7101dff008a5e901756114b9b66f2c592f98c3.tar.bz2 |
Relocated .latex2html-init to l2hinit.perl.
howto.perl is new; supports LaTeX2HTML for HOWTO documents.
Diffstat (limited to 'Doc/perl/howto.perl')
-rw-r--r-- | Doc/perl/howto.perl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/perl/howto.perl b/Doc/perl/howto.perl new file mode 100644 index 0000000..ee8f3a4 --- /dev/null +++ b/Doc/perl/howto.perl @@ -0,0 +1,11 @@ +# -*- perl -*- +# +# This implements the Python howto class. All it really needs to do it +# load the "python" style. + +package main; + +&do_require_package("article"); +&do_require_package("python"); + +1; # sheesh.... |