From 3c217078230aaf7a8c7a6149cc069e5f2a08448a Mon Sep 17 00:00:00 2001 From: Stewart Ferguson Date: Sun, 3 Feb 2019 16:54:28 +0100 Subject: [PATCH 1/2] Moving generated man-page to section 3 --- docs/source/conf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 72d2df32a..c904e96a6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -177,3 +177,9 @@ # If false, no module index is generated. #latex_use_modindex = True + +# Grouping the document tree into Man pages. List of tuples +# (startdocname, name, description, authors, section) +man_pages = [ + ( master_doc, project, project + ' ' + version, 'Enthought', 3 ) +] From e6d161f2c27ab49a5f98b73d0b837b85770da40f Mon Sep 17 00:00:00 2001 From: Poruri Sai Rahul Date: Fri, 8 Jan 2021 17:08:41 +0000 Subject: [PATCH 2/2] Update docs/source/conf.py Co-authored-by: Mark Dickinson --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index c904e96a6..38f03ada8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -181,5 +181,5 @@ # Grouping the document tree into Man pages. List of tuples # (startdocname, name, description, authors, section) man_pages = [ - ( master_doc, project, project + ' ' + version, 'Enthought', 3 ) + (master_doc, project, project + ' ' + version, 'Enthought', 3) ]