diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-04-02 04:32:55 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-04-02 04:33:43 +0200 |
commit | f2f05347ee0b81cc85e0a8b7922a26d00da76261 (patch) | |
tree | 0ee59e85f800b81b6307377ef437a4e591292159 /conf.py | |
parent | 3bf50f4f6e7c9ec6369a3b49dee278ae21dd3dde (diff) | |
download | club1-docs-f2f05347ee0b81cc85e0a8b7922a26d00da76261.tar.gz club1-docs-f2f05347ee0b81cc85e0a8b7922a26d00da76261.zip |
build: small fixes & enhancementsn-peugnet-build-fixes
- rename LANGUAGE exported env var to LOCAL, not to disturb Make messages
- remove failing sphinx commands
- remove quotes around BUILDDIR and SOURCEDIR as these will never have spaces
- share doctrees for localized builders for perf. This also fixes warning for epub
about .doctrees unknown mimetype
- fix LaTeX paper size to always use A4
- fix today format to use a localized version
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -51,7 +51,7 @@ templates_path = ['_templates'] # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = os.environ['LANGUAGE'] +language = os.environ['LOCALE'] # Set by make. languages = os.environ['LANGUAGES'].split(' ') @@ -81,6 +81,9 @@ image_converter_args = ['-density', '250', '-resize', '230%'] # Disable smart quotes at Sphinx level, as it is done by MyST. smartquotes = False +# Date formats for today, for instance in LaTeX. +# Use locale’s appropriate date representation. +today_fmt = '%x' # -- Options for HTML output ------------------------------------------------- @@ -119,7 +122,16 @@ html_static_path = ['_static'] # The domain is used for code documentation, so no need for it here. primary_domain = None + # -- Options for MAN output -------------------------------------------------- # Show URLs after text in MAN output. man_show_urls = True + + +# -- Options for LATEX output ------------------------------------------------ + +# Always use A4 paper. +latex_elements = { + 'papersize': 'a4paper', +} |