]> granicus.if.org Git - python/commitdiff
Make HTML the default output format, since that is what people actually
authorFred Drake <fdrake@acm.org>
Tue, 30 Jan 2001 22:30:01 +0000 (22:30 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 30 Jan 2001 22:30:01 +0000 (22:30 +0000)
want most of the time.

Doc/tools/mkhowto

index e832f9a5bd7f91f82a928c406691d8172d417b39..d326a0940b0192884b1d2ec6655e1d725f80d662 100755 (executable)
@@ -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):