diff options
author | shimizukawa <shimizukawa@gmail.com> | 2015-03-16 00:20:33 +0900 |
---|---|---|
committer | shimizukawa <shimizukawa@gmail.com> | 2015-03-16 00:20:33 +0900 |
commit | 36d47a2193dbfea8693d2f852414530136f01507 (patch) | |
tree | d49f2a1d1398d34737ca7c04ef45c0e9f8700290 /sphinx/quickstart.py | |
parent | e8e5bae15f0f3db658fd7c0cc34a5b04dd3ea48e (diff) | |
download | sphinx-git-36d47a2193dbfea8693d2f852414530136f01507.tar.gz |
Close #1776: ``source_suffix = ['.rst']`` cause unfriendly error on prior version.
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 0548f69c5..f13a5c7cd 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -108,7 +108,9 @@ extensions = [%(extensions)s] templates_path = ['%(dot)stemplates'] # The suffix(es) of source filenames. -source_suffix = ['%(suffix)s'] +# You can specify multiple suffix as a list of string: +# source_suffix = ['.rst', '.md'] +source_suffix = '%(suffix)s' # The encoding of source files. #source_encoding = 'utf-8-sig' |