diff options
Diffstat (limited to 'sphinx/config.py')
-rw-r--r-- | sphinx/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index d14108f55..5c40a29c6 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -33,6 +33,8 @@ class Config(object): extensions = ([], True), # general reading options + master_doc = ('contents', True), + source_suffix = ('.rst', True), unused_files = ([], True), add_function_parentheses = (True, True), add_module_names = (True, True), @@ -44,6 +46,7 @@ class Config(object): html_index = ('', False), html_sidebars = ({}, False), html_additional_pages = ({}, False), + html_copy_source = (True, False), # HTML help options htmlhelp_basename = ('pydoc', False), |