D0n9X1n / markdown-preview.vim

Yet, just another markdown preview plugin for vim.
https://github.com/D0n9X1n/markdown-preview.vim
MIT License
73 stars 12 forks source link

Broken table generation #13

Closed Faboor closed 6 years ago

Faboor commented 6 years ago

Expected Behavior

TEST.md example table should generate a <table>

Actual Behavior

It generates a paragraph:

<h3>Table</h3>
<p>| Tables | Are | Cool | | ------------- |:-------------:| -----:| | col 3 is | right-aligned | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 |</p>

Steps to Reproduce the Problem

  1. Install markdown-preview
  2. vim ~/.vim/bundle/markdown-preview.vim/TEST.md
  3. :MarkdownPreview github

Specifications

Version: 40cf42a - update css file

D0n9X1n commented 6 years ago

Thanks for the bug reporting. This has been fixed in v3.1.3.

Use :PlugUpdate or other commands to upgrade the plugin.

Faboor commented 6 years ago

Can confirm, works now. Thanks!