-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for wiki links #62
Comments
One more challenge: there is no spec. “Wiki links” work different in different spaces.
As for precedence on things-in-the-ast-that-don’t-have-html-equivalents, MDX is already supported here, and directives are likely to be added at some point: #57. |
Well, I think at least internal wikilinks are pretty standard: Either you use But your're right, there is no spec for that kind of syntax, except the wikipedia one that is not markdown-based. I will need to find a workaround, maybe replacing the wikilinks by real markdown-style links beforhand |
As a not standardized feature, I don't think this will land in core That said, if parser plugins become a thing #32 (comment), wikilinks could potentially be added as a community extension/plugin instead of a preprocessing step. If you have interest in extending |
First, I'm thankfull for this fantastic work !
I'm trying to build a web app to render markdown coming from obsidian or similar software, but there is one feature I'm missing: wikilinks.
It would be nice if I could get
[[article_name|click here]]
blocks in the abstract syntax tree, because it is quite common now in some tools that use markdown.One potential challenge is that there is no "right answer" to create an html equivalent to this type of link, it depends on the situation.
Would that make sense to add wiki-style links as an option for the abstract syntax tree if there is no way to compile it ? Maybe creating a html link to
./article
would be the best default to convert[[article]]
?Thank's
The text was updated successfully, but these errors were encountered: