diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-10-28 11:03:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-28 11:03:13 +0900 |
commit | 7eabbfc5ecdf52329672410f651880645074e215 (patch) | |
tree | eb87598abf60ddaa8e5484a05ab2e4807742bf1a /sphinx | |
parent | c40b4249cdc2a1d78ba6b92a0009bf1f942b68d4 (diff) | |
parent | a843fd3db8b588be93b576049a8a291bc4b3ec9d (diff) | |
download | sphinx-git-7eabbfc5ecdf52329672410f651880645074e215.tar.gz |
Merge pull request #8284 from tk0miya/7996_man_make_section_directory_by_default
Close #7996: manpage: Make a section directory on build manpage by default
Diffstat (limited to 'sphinx')
-rw-r--r-- | sphinx/builders/manpage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py index 2a10ba62f..442abb915 100644 --- a/sphinx/builders/manpage.py +++ b/sphinx/builders/manpage.py @@ -120,7 +120,7 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('man_pages', default_man_pages, None) app.add_config_value('man_show_urls', False, None) - app.add_config_value('man_make_section_directory', False, None) + app.add_config_value('man_make_section_directory', True, None) return { 'version': 'builtin', |