We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Sphinx configuration currently builds a single manual page, from the entire master document. In conf.py:
conf.py
man_pages = [(master_doc, "towncrier", "Towncrier Documentation", [author], 1)]
The resulting manual page does not meet the conventions for section 1 of the manual ("User Commands"). (See the man-pages(7) manual page.)
man-pages(7)
The document should instead be in the manual section 7 ("Overview"), to describe the Towncrier system as a whole.
The text was updated successfully, but these errors were encountered:
Here is a patch to address this issue:
modified docs/conf.py @@ -133,7 +133,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [(master_doc, "towncrier", "Towncrier Documentation", [author], 1)] +man_pages = [(master_doc, "towncrier", "Towncrier Documentation", [author], 7)] # -- Options for Texinfo output -------------------------------------------
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The Sphinx configuration currently builds a single manual page, from the entire master document. In
conf.py
:The resulting manual page does not meet the conventions for section 1 of the manual ("User Commands"). (See the
man-pages(7)
manual page.)The document should instead be in the manual section 7 ("Overview"), to describe the Towncrier system as a whole.
The text was updated successfully, but these errors were encountered: