Open
Description
Describe the gap in the current documentation
I followed
MyST-Parser/docs/syntax/cross-referencing.md
Line 286 in 59b5386
However, I spent significant time figuring out how to link the following name with spaces:
$ myst-inv https://ipywidgets.readthedocs.io/en/latest -n "examples/Using Interact"
name: Jupyter Widgets
version: '8.1'
base_url: https://ipywidgets.readthedocs.io/en/latest
objects:
std:
doc:
examples/Using Interact:
loc: examples/Using%20Interact.html
text: Using Interact
For example the following did not work:
<inv:ipywidgets:std:doc#examples/Using Interact>
<inv:ipywidgets:std:doc#examples/"Using Interact">
It turns out one has to encode the spaces:
<inv:ipywidgets:std:doc#examples/Using%20Interact>
The documentation above does not include info about how to encode spaces.
Describe the solution you'd like
I would like to add a paragraph about encoding spaces. What do you think?