We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a992ce6 commit 261d88fCopy full SHA for 261d88f
plugin/vim-markdown-preview.vim
@@ -66,7 +66,7 @@ function! Vim_Markdown_Preview()
66
elseif g:vim_markdown_preview_perl == 1
67
call system('Markdown.pl "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
68
elseif g:vim_markdown_preview_pandoc == 1
69
- call system('pandoc "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
+ call system('pandoc --smart --standalone "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
70
else
71
call system('markdown "' . b:curr_file . '" > /tmp/vim-markdown-preview.html')
72
endif
0 commit comments