github-slugger support and markdown-it-wikilinks rendering in preview
Enhancements:
- merge #85 - add setting
vscodeMarkdownNotes.slugifyMethod
- "classic" supports some options specific to Markdown Notes. "github-slugger" uses https://github.com/Flet/github-slugger and is compatible with foam, addresses: foambubble/foam#240 - merge #87 - add
API.ts
with a 'beta' public API (subject to change), one example function:
let notes = await vscode.commands.executeCommand('vscodeMarkdownNotes.notesForWikiLink', 'demo');
- add a sync version of
filesForWikiLinkRef
,filesForWikiLinkRefFromCache
- merge #86 from @thomaskoppelaar (🙏🏿 🙏🏿 🙏🏿), with...
markdownItPlugins
rendering of wiki-links- add setting:
vscodeMarkdownNotes.previewShowFileExtension
- Specifies whether or not to show the linked file's extension in the preview - add setting:
vscodeMarkdownNotes.previewLabelStyling
- Changes how the link to a file should be shown, either with or without brackets
Fixes:
- (#88) fix bug with
jest-focused.sh
test runner and fixtest-at-line.ts
so it can parse typescript files
Cleanup:
- cleanup jest tests
- add
setConfig
helper to jest tests
Diff: