Skip to content

0.8.8

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Oct 16:07
581bc3f

Updated crossnote to version 0.9.4.

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

  • Fixed a bug of importing files that contains empty heading: #1840
  • Fixed a bug of rendering inline math in image name: #1846
  • Fixed a bug of parsing inline code: #1848