~dricottone/vim-markdown-preview

261d88f3081b17f7c23e6244088b0c58d1bbe24d — Thomas Hodgson 7 years ago a992ce6
Use smart punctuation and template with Pandoc
1 files changed, 1 insertions(+), 1 deletions(-)

M plugin/vim-markdown-preview.vim
M plugin/vim-markdown-preview.vim => plugin/vim-markdown-preview.vim +1 -1
@@ 66,7 66,7 @@ function! Vim_Markdown_Preview()
  elseif g:vim_markdown_preview_perl == 1
    call system('Markdown.pl "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
  elseif g:vim_markdown_preview_pandoc == 1
    call system('pandoc "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
    call system('pandoc --smart --standalone "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
  else
    call system('markdown "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
  endif