Commit 5599441b authored by Fred Drake's avatar Fred Drake

Make HTML the default output format, since that is what people actually

want most of the time.
parent fc3fc337
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
"""usage: %(program)s [options...] file ... """usage: %(program)s [options...] file ...
Options specifying formats to build: Options specifying formats to build:
--html HyperText Markup Language --html HyperText Markup Language (default)
--pdf Portable Document Format (default) --pdf Portable Document Format
--ps PostScript --ps PostScript
--dvi 'DeVice Indepentent' format from TeX --dvi 'DeVice Indepentent' format from TeX
--text ASCII text (requires lynx) --text ASCII text (requires lynx)
...@@ -97,7 +97,7 @@ class Options: ...@@ -97,7 +97,7 @@ class Options:
up_link = None up_link = None
up_title = None up_title = None
# #
DEFAULT_FORMATS = ("pdf",) DEFAULT_FORMATS = ("html",)
ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text") ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text")
def __init__(self): def __init__(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment