I would like to include a link to our publishing notes in the footer of Spinx html outout, next to the Copyright notice.
I tried to include a link in the
copyright
notice inconf.py
. However, that is not rendered as expected. I tried several formats for the link and none worked so far.copyright = '2023, Foo. Also see `PUBLISHING NOTES <https://www.foo.de/en/publishing-notes.html>`_'
- There does not seem to be an extra Sphinx option for the publishing notes.
=> What is the recommended way to include publishing notes in the (html output of) Sphinx documentation?
=> Or asked in a more general way: how can I adapt the html footer
that contains the copyright notice (and that is shown below each content page)?
Edit:
I also tried
html_theme_options = {
'footer': '<a href="https://www.foo.de/en/publishing-notes.html">PUBLISHING NOTES</a>'
}
without luck.
Related: