Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5599441

Browse files
committed
Make HTML the default output format, since that is what people actually
want most of the time.
1 parent fc3fc33 commit 5599441

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/tools/mkhowto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"""usage: %(program)s [options...] file ...
44
55
Options specifying formats to build:
6-
--html HyperText Markup Language
7-
--pdf Portable Document Format (default)
6+
--html HyperText Markup Language (default)
7+
--pdf Portable Document Format
88
--ps PostScript
99
--dvi 'DeVice Indepentent' format from TeX
1010
--text ASCII text (requires lynx)
@@ -97,7 +97,7 @@ class Options:
9797
up_link = None
9898
up_title = None
9999
#
100-
DEFAULT_FORMATS = ("pdf",)
100+
DEFAULT_FORMATS = ("html",)
101101
ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text")
102102

103103
def __init__(self):

0 commit comments

Comments
 (0)