MyST-Parser icon indicating copy to clipboard operation
MyST-Parser copied to clipboard

Error with sphinx_toolbox

Open cleder opened this issue 2 months ago • 0 comments

What version of myst-parser are you using?

3.0.1

What version dependencies are you using?

I am trying to use sphinx-toolbox with MyST and it raises the following

What operating system are you using?

Linux

Describe the Bug

Warning, treated as error:
Domain 'sphinx_toolbox.github::github' has not implemented a `resolve_any_xref` method [myst.domains]
make: *** [Makefile:31: html] Error 2

Expected Behavior

No response

To Reproduce

from my conf.py

extensions = [
    "myst_parser",
    "sphinx_copybutton",
    "sphinx_toolbox.sidebar_links",
    "sphinx_toolbox.github",
]

# MyST-Parser configuration
myst_enable_extensions = [
    "colon_fence",
    "deflist",
    "fieldlist",
    "tasklist",
]
suppress_warnings = ["myst.domains"]

index.md

```{sidebar-links}
:caption: Links
:github:
```

cleder avatar Dec 11 '25 15:12 cleder