Skip to content

0.8.14

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Sep 12:19
b1f8c88

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.