diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-03-29 20:02:37 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-03-29 20:02:37 +0200 |
commit | c1b1d89fb2ea94ec09961c8542ede0462fab4660 (patch) | |
tree | 8326ad3927ebca5bb7606f605bece7185274e115 /conf.py | |
parent | ff4f0700685e1e5e9ca4145771d3fd029a31f1fe (diff) | |
download | club1-docs-c1b1d89fb2ea94ec09961c8542ede0462fab4660.tar.gz club1-docs-c1b1d89fb2ea94ec09961c8542ede0462fab4660.zip |
fix: links in man & svgs in latexpdf
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -30,6 +30,7 @@ version = os.environ['VERSION'] # ones. extensions = [ 'myst_parser', + 'sphinx.ext.imgconverter', ] # Allow to create implicit reference to headings. @@ -67,12 +68,15 @@ exclude_patterns = [ '.DS_Store', ] +# imgconverter plugin converts SVG to PNG for builders that do not support it. +# Increase PNG image resolution. +image_converter_args = ['-density', '400', '-resize', '200%'] + # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -# html_theme = 'sphinx_rtd_theme' html_show_sourcelink = language == 'fr' @@ -98,3 +102,8 @@ 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 |