Skip to content

Releases: shd101wyy/crossnote

0.9.9

18 Mar 03:44
5254777
Compare
Choose a tag to compare

Bug fixes

Chore

0.9.8

10 Mar 14:42
047358e
Compare
Choose a tag to compare

New features

Updates

Bug fixes

0.9.7

10 Dec 10:06
b64a355
Compare
Choose a tag to compare

New features

  • Added enablePreviewZenMode option and reorganized the right-click context menu.

    image

Bug fixes

0.9.6

26 Oct 11:57
fc27357
Compare
Choose a tag to compare

Changes

  • Updated mermaid.js to the latest version 10.6.0.

Bug fixes

0.9.5

23 Oct 02:18
29e70b2
Compare
Choose a tag to compare

Bug fixes

0.9.4

21 Oct 16:00
9afc685
Compare
Choose a tag to compare

New features

Changes

  • Changed the markdown parser process to be like below. We removed the onWillTransformMarkdown and onDidTransformMarkdown 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:

    image

Bug fixes

0.9.3

15 Oct 10:48
377c174
Compare
Choose a tag to compare

Bug fixes

  • Better handling of source map for importing files.

0.9.2

15 Oct 09:12
dfffe53
Compare
Choose a tag to compare

New features

  • Added ID button to copy the element id to clipboard:

    Screenshot from 2023-10-15 15-34-27

  • 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

0.9.1

14 Oct 01:27
402d89e
Compare
Choose a tag to compare

Buf fixes

  • Fixed rendering vega and vega-lite. Also fixed interactive=true attribute for vega.

0.9.0

13 Oct 15:41
ba12c2e
Compare
Choose a tag to compare

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}

Bug fixes