spatialaudio / nbsphinx

:ledger: Sphinx source parser for Jupyter notebooks
https://nbsphinx.readthedocs.io/
MIT License
457 stars 130 forks source link

Links that have inline code in the link text don't get rendered correctly #612

Open zmoon opened 2 years ago

zmoon commented 2 years ago

Example source:

[nbsphinx](https://github.com/spatialaudio/nbsphinx)

[`nbsphinx`](https://github.com/spatialaudio/nbsphinx)

[Sphinx extension `nbsphinx` parses Jupyter Notebooks for Sphinx](https://github.com/spatialaudio/nbsphinx)

In JupyterLab: image

Sphinx with RTD theme: image


nbsphinx version 0.8.7

zmoon commented 2 years ago

Also trouble with inline code inside ** ** (strong)

mgeier commented 2 years ago

This is a known limitation of the reST format, which is used internally in nbsphinx (but I would like to get rid of it, see #36).

See also: #301, #397.

zmoon commented 2 years ago

Ah I see, thanks.