Skip to content

Releases: shd101wyy/crossnote

0.8.16

24 Sep 14:15
3db0b91
Compare
Choose a tag to compare

New features

  • Added head.html config file to allow you to include custom HTML in the <head> of the preview.
    This could be useful for adding custom CSS or JavaScript to the preview.

Bug fixes

0.8.15

17 Sep 14:42
3fed6b2
Compare
Choose a tag to compare

New features

  • Added the includeInHeader option, which allows you to include custom HTML in the <head> of the preview.
    This could be useful for adding custom CSS or JavaScript to the preview.

Bug fixes

0.8.14

15 Sep 12:19
b1f8c88
Compare
Choose a tag to compare

New features

  • (Beta) Added the bitfield diagram support. Supported both bitfield and bit-field code fences. shd101wyy/vscode-markdown-preview-enhanced#1749
    ```bitfield {vspace=100}
    [
      {name: 'IPO',   bits: 8},
      {               bits: 7},
      {name: 'BRK',   bits: 5, type: 4},
      {name: 'CPK',   bits: 1},
      {name: 'Clear', bits: 3, type: 5},
      {               bits: 8}
    ]
    ```
    

Bug fixes

  • Fixed the vue.css theme bug that caused the missing scroll bar in the preview. Also fixed a context menu bug for selecting the vue.css theme.

0.8.13

15 Sep 08:55
b5d6651
Compare
Choose a tag to compare

Bug fixes

  • Fixed rendering MathJax in preview #311.
  • Fixed the preview background color #312.
  • Added error message when failed to parse the YAML front-matter. Also escaped the HTML rendered in the front-matter table in preview. #312.