Skip to content

Releases: shd101wyy/vscode-markdown-preview-enhanced

0.2.9

01 Oct 01:51
Compare
Choose a tag to compare
0.2.9 Pre-release
Pre-release
  • Added enableEmojiSyntax option.
  • Upgraded mume to version 0.2.3.

0.2.8

03 Sep 03:13
Compare
Choose a tag to compare
0.2.8 Pre-release
Pre-release

0.2.8

  • Upgraded mume to 0.2.2.
    • Added enableCriticMarkupSyntax option. Syntax guide.
    • Added toc config to front-matter for [TOC] and sidebar TOC #606.
    • Fixed ordered list TODO box bug #592.
    • Upgraded KaTeX to version 0.8.3.
    • Changed MathJax CDN url.
    • Fixed markdown export math issue #601.
  • Removed ctrl-shift-i keybord shortcut.
  • Added Open Preview command to context menu.

0.2.7

18 Aug 19:11
Compare
Choose a tag to compare
0.2.7 Pre-release
Pre-release
  • Added ignoreLink option to TOC.
  • Fixed issue #585, #586.

0.2.6

18 Aug 04:24
Compare
Choose a tag to compare
0.2.6 Pre-release
Pre-release
  • Removed the Welcome Page.
  • Supported revealjs fragment #559.
  • Supported Experimental Puppeteer export (Headless Chrome).

0.2.5

11 Aug 22:12
Compare
Choose a tag to compare
0.2.5 Pre-release
Pre-release
  • Fixed revealjs html export style bug.

  • Supported configuring attributes for diagram containers.
    For example:

      ```puml {.center}
      // your code here
      ```
    

    will add class="center" to the container.

  • By default, all exported files will use github-light.css style. You can use your preview theme for export by setting printBackground to true from the extension settings, or add print_background:true to front-matter.

0.2.4

07 Aug 03:01
Compare
Choose a tag to compare
0.2.4 Pre-release
Pre-release

Fixed html export style bug.

0.2.3

06 Aug 02:42
Compare
Choose a tag to compare
0.2.3 Pre-release
Pre-release
  • The old feature WaveDrom diagram is now supported again.

  • The doc of customization css is updated, please check it here.

  • Sidebar TOC is now supported in HTML export, and it is enabled by default.
    screen shot 2017-08-05 at 8 50 16 pm

    You can configure the sidebar TOC by front-matter. For more information, please check this doc.

  • Upgraded mume to version 0.1.7.

0.2.2

28 Jul 20:34
Compare
Choose a tag to compare
0.2.2 Pre-release
Pre-release
  • Deprecated the old way of defining attribtues (still supported but not recommened) #529. Now attributes should be defined like below in order to be compatible with the pandoc parser:

      {#identifier .class .class key=value key=value}
    

    And here are a few changes:

      # Hi {#id .class1 .class2}
    
      Show `line-numbers`
      ```javascript {.line-numbers}
      x = 1
      ```
    
      ```python {cmd=true output="markdown"}
      print("**Hi there**")
      ```
    
      <!-- slide vertical=true .slide-class1 .slide-class2 #slide-id -->
    
      \@import "test.png" {width=50% height=30%}
    
  • Added a few more preview themes.

  • Supported vega and vega-lite. #524.

    • Code block with vega notation will be rendered by vega.
    • Code block with vega-lite notation will be rendered by vega-lite.
    • Both JSON and YAML inputs are supported.

    screen shot 2017-07-28 at 7 59 58 am

    You can also @import a JSON or YAML file as vega diagram, for example:

    \@import "your_vega_source.json" {as:"vega"}
    \@import "your_vega_lite_source.json" {as:"vega-lite"}
  • Supported ditaa.
    ditaa can convert diagrams drawn using ascii art ('drawings' that contain characters that resemble lines like | / - ), into proper bitmap graphics. (Java is required to be installed)

    ditaa is intergrated with code chunk, for example:

  ```ditaa {cmd=true args=["-E"]}
  +--------+   +-------+    +-------+
  |        | --+ ditaa +--> |       |
  |  Text  |   +-------+    |diagram|
  |Document|   |!magic!|    |       |
  |     {d}|   |       |    |       |
  +---+----+   +-------+    +-------+
      :                         ^
      |       Lots of work      |
      +-------------------------+
  ```

shift-enter to run code chunk.
set {hide=true} to hide code block.
set {run_on_save=true} to render ditaa when you save the markdown file.

screen shot 2017-07-28 at 8 11 15 am

0.2.1

23 Jul 02:21
Compare
Choose a tag to compare
0.2.1 Pre-release
Pre-release

Quickfix clicking link bug.

0.2.0

22 Jul 23:15
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release
  • Upgraded mume to version 0.1.5.
    • Fixed header id bug #516.
    • Fixed enableExtendedTableSyntax bug.
    • Fixed MathJax init error.
    • Fixed plain text code block font size issue.
    • Fixed transformMarkdown function Maximum call stack size exceeded issue 515, #517.
    • Fixed webview.ts clickTagA action bug 503.