An extension that allows you to manage custom permalinks in Markdown files.
Custom permalink URL links will be inspectable (even in VSCode's native preview).
A convenient syntax allows to quickly convert on the fly an identifier into a permalink.
Configuration
The configuration required to use the extension is as follows:
// Permalink URL template, recognized from this extension
// (permalinks will also be inspected at the Markdown preview).
"markdownPermalinks.templateURL": "https://mysite.com/perma/?id={ID}",
// Convenient syntax for transformation into permalink on the fly
// (When the text cursor is on an identifier that respects this regex,
// pressing Enter key the ID will be transformed into a permalink).
"markdownPermalinks.idRegex": "\\{([A-Za-z0-9_-]+)\\}",