-
Notifications
You must be signed in to change notification settings - Fork 41
Support Markdown links on MyST #250
Comments
I've noticed this issue #114. And I find the ref syntex provided by my-st is useful: https://myst-parser.readthedocs.io/en/latest/syntax/syntax.html#targets-and-cross-referencing
I'm wondering whether |
I find a solution. First, generate section label: extensions += ['sphinx.ext.autosectionlabel']
# Make sure the target is unique
autosectionlabel_prefix_document = True
autosectionlabel_maxdepth = None Then use
hoverxref will identify the ref above. However, the markdown links cannot be identified:
So I have to rewrite all my links using |
Hi, same question/issue here with Myst markdown in Sphinx. Commenting here for visibility. |
Hi all! I don't have too much experience working with MyST and how it generates the nodes. It makes sense that it works when using However, I'm not sure to what node |
Hey gang, so yeh I wanted this also, plus didn't really like the whole having to have it hosted on RTD to get it working. So I created my own extension 😅, that works by pre-compiling all the tips, rather than fetching them interactively (and also supports other APIs like wikipedia and DOI) Here it is: https://sphinx-tippy.readthedocs.io, and you can see it in action on https://myst-parser.readthedocs.io happy to work with you guys on it |
Hello Everyone, We basically have 3 simple use-cases when the mouse hovers our keyword 'foo':
...I am very new to this whole markdown things, so I apologize if my question is somehow obvious... Thank you so much! |
Am I doing something wrong, or are
but that did not seem to work.
~~but that did not work either. ~~ Actually it works, I did not configure Basically what would be the minimum setup and supported roles that could be used? Ideally compared to myst documentation here and here |
I love the features you provide. But I'm writing Sphinx docs with markdown (myst-parser).
For example, I often write a link to other documents in my docs (markdown):
I wish when I hover over the markdown link, a preview of that doc is shown. Is it possible to support hoverxref in markdown? Thanks.
The text was updated successfully, but these errors were encountered: