diff options
author | Fred Drake <fdrake@acm.org> | 2001-01-30 22:30:01 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-01-30 22:30:01 (GMT) |
commit | 5599441bbf8c180b3ac0e96f487480142c6116a5 (patch) | |
tree | a02a29a6969cfdf2ffb20e969f3fac680bf0eec7 | |
parent | fc3fc337d04df860de3c1a3a0c1f2d53ffc21c09 (diff) | |
download | cpython-5599441bbf8c180b3ac0e96f487480142c6116a5.zip cpython-5599441bbf8c180b3ac0e96f487480142c6116a5.tar.gz cpython-5599441bbf8c180b3ac0e96f487480142c6116a5.tar.bz2 |
Make HTML the default output format, since that is what people actually
want most of the time.
-rwxr-xr-x | Doc/tools/mkhowto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tools/mkhowto b/Doc/tools/mkhowto index e832f9a..d326a09 100755 --- a/Doc/tools/mkhowto +++ b/Doc/tools/mkhowto @@ -3,8 +3,8 @@ """usage: %(program)s [options...] file ... Options specifying formats to build: - --html HyperText Markup Language - --pdf Portable Document Format (default) + --html HyperText Markup Language (default) + --pdf Portable Document Format --ps PostScript --dvi 'DeVice Indepentent' format from TeX --text ASCII text (requires lynx) @@ -97,7 +97,7 @@ class Options: up_link = None up_title = None # - DEFAULT_FORMATS = ("pdf",) + DEFAULT_FORMATS = ("html",) ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text") def __init__(self): |