Describe the bug
Thanks for providing the sphinx-design extension. I use it together with Pydata Sphinx Theme to build a navigation page for our product documentation. See https://docs.software-univention.de/. I want to convert all cards there to clickable cards.
I want to use hyperlink targets as defined in docutils. My document supports several languages. Depending on the language, I include a different link.txt file. They have the same hyperlink name, but a different hyperlink target, depending on the language.
context
I want to use hyperlink targets for clickable cards:
.. grid-item-card:: some title
:link: hyperlink-target-name_
Using
.. grid-item-card:: `some title <hyperlink-target-name_>`_
works. But then the card isn't clickable and just the title of the card. I want to whole card to be clickable with hyperlink targets.
expectation
I need the clickable card to render the link as defined in the hyperlink target.
bug
The link then just renders to http://$host/$path/hyperlink-target-name_ instead of the external link I want to have.
problem
This is a problem for people who have a document with different languages and need links depending on the language. The :link: option isn't part of the translation.
Reproduce the bug
- Create an empty Sphinx project and add the extensions pydata_sphinx_theme and sphinx_design to the
conf.py.
- Create a file
links-en.txt:
.. _hyperlink-target: https://www.example.com
- Create a file
links-de.txt:
.. _hyperlink-target: https://www.example.de
- To your conf.py, add:
rst_epilog = """
.. include:: /links-en.txt
"""
def adapt_settings_to_translation(app, config):
if config.language == "de":
config.rst_epilog = """
.. include:: /links-de.txt
"""
def setup(app):
app.connect("config-inited", adapt_settings_to_translation)
- To you
index.rst file add:
.. grid:: 4
.. grid-item-card:: Some title
:link: hyperlink-target_
List your environment
pydata-sphinx-theme==0.13.3
sphinx_design==0.5.0
Sphinx==5.0.0
docutils==0.17.1
Describe the bug
Thanks for providing the sphinx-design extension. I use it together with Pydata Sphinx Theme to build a navigation page for our product documentation. See https://docs.software-univention.de/. I want to convert all cards there to clickable cards.
I want to use hyperlink targets as defined in docutils. My document supports several languages. Depending on the language, I include a different
link.txtfile. They have the same hyperlink name, but a different hyperlink target, depending on the language.context
I want to use hyperlink targets for clickable cards:
Using
works. But then the card isn't clickable and just the title of the card. I want to whole card to be clickable with hyperlink targets.
expectation
I need the clickable card to render the link as defined in the hyperlink target.
bug
The link then just renders to
http://$host/$path/hyperlink-target-name_instead of the external link I want to have.problem
This is a problem for people who have a document with different languages and need links depending on the language. The
:link:option isn't part of the translation.Reproduce the bug
conf.py.links-en.txt:links-de.txt:index.rstfile add:List your environment