-
Notifications
You must be signed in to change notification settings - Fork 18
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
Wikilink handler interface #104
Conversation
This is a huge commit that also changes a bit of the code structure. Arcs are now a part of the `vault` module, and wikilinks get a module for themselves. The commit has a rewrite of how wikilinks are handled, which allows users of the API to add their own handlers to get custom functionality. For now, the wikilink to CommonMark link conversion is crudely implemented as a wikilink handler. It is used as a default in VaultBuilder.
I think there might be something weird happening with aliases, as now the links come out as |
Ah fuck... Pest has a weird API to get their rules out as strings 😅 Fixed now |
It works! 🚀 |
Motivation
This PR has a rewrite of how wikilinks are handled, which allows users of the API to add their own handlers to get custom functionality.
Evidences
None yet
To do
CommonMarkHandler
to be more easily pluggable