Releases: shd101wyy/vscode-markdown-preview-enhanced
Releases · shd101wyy/vscode-markdown-preview-enhanced
0.8.15
0.8.14
0.8.13
Updated crossnote to version 0.9.8.
Bug fixes
- Fixed a bug of link redirection in preview by @byte-clown
- Fixed Long sidebarToc does not display completely by @moonlitusun
- Removed the
text
as the default language selector for code block.
Chore
- Updated flake.nix and node.js to 20.
0.8.12
Updated crossnote to version 0.9.8.
New features
- @moonlitusun sidebarToc supports local caching
Updates
- @oneWaveAdrian updated the
mermaid
version to the latest10.9.0
.
Bug fixes
0.8.11
Updated crossnote to version 0.9.7.
New features
Bug fixes
- Fixed rendering
vega-lite
inReveal.js
slide: #1880 - Removed one github-dark background css attribute: shd101wyy/crossnote#344
0.8.10
0.8.9
0.8.8
Updated crossnote to version 0.9.4.
New features
- Updated fontawesome from version 4.7 to version 6.4.2 (Free).
A list of available icons can be found at: https://kapeli.com/cheat_sheets/Font_Awesome.docset/Contents/Resources/Documents/index - Updated WaveDrom to the latest version 3.3.0.
Changes
-
Changed the markdown parser process to be like below. We removed the
onWillTransformMarkdown
andonDidTransformMarkdown
hooks as these two caused the confusion.markdown ↓ `onWillParseMarkdown(markdown)` ↓ markdown ↓ **crossnote markdown transformer** ↓ markdown ↓ **markdown-it or pandoc renderer** ↓ html ↓ `onDidParseMarkdown(html)` ↓ html, and then rendered in the preview
-
(Beta) Supported to export the selected element in preview to .png file and copy the blob to the clipboard:
Bug fixes
0.8.7
Updated crossnote to version 0.9.2 and version 0.9.3.
New features
-
Added
ID
button to copy the element id to clipboard: -
Supported to import section of markdown by header id:
@import "test.md#header-id" or ![](test.md#header-id) or ![[test#header-id]]
Bug fixes
- URL fragments on image links do not load: #1837
- Supported matplotlib-type preview for other Python tools like
pipenv
: shd101wyy/crossnote#332 - Fixed jump to header from link like
[link](test.md#header-id)
. - Better handling of source map for importing files.
0.8.6
This MPE version reduced the VS Code version requirement to 1.70.0 or above.
Updated crossnote to version 0.9.0 and 0.9.1.
New features
- Added two more syntaxes to import files in addition to the
@import
syntax. Please note that these syntaxes only work on new lines. For example, they won't work within list items.- Use the image syntax but with other file extensions:
![](path/to/file.md) ![](path/to/test.py){.line-numbers} ![](path/to/test.js){code_block=true}
- Use the wikilink syntax but with other file extensions:
![[file]] ![[path/to/test.py]]{.line-numbers} ![[path/to/test.js]]{code_block=true}
- Use the image syntax but with other file extensions: