Front side version number empty
A version is displayed on the front page. Unfortunately I don't know how to fill in the version. In conf.py there is: release = '1.0' and in the simplepdf_vars there is 'version': '1.0',. Unfortunately both variables are not displayed as version. Does anyone know how to fill in the version on the front page?
sphinx: 8.1.3 sphinx_simplepdf: 1.6.0 weasyprint: 63.1 python 3.13.1 Windows 11
Sphinx knows release and version, and version needs to be set for your use case.
Take a look at the demo project as some kind of reference: https://github.com/useblocks/sphinx-simplepdf/blob/main/demo/conf.py#L33
@danwos, thank you, this solved the issue.