I have no problem to run Vimwiki2HTML with vimiwiki_markdown with this configuration:
set nocompatible
filetype plugin on
let g:vimwiki_list = [{
\ 'path':'~/git/wiki',
\ 'path_html':'~/git/wiki/html/',
\ 'syntax': 'markdown',
\ 'ext': '.md',
\ 'custom_wiki2html': 'vimwiki_markdown',
\ 'template_ext': '.tpl'}]
I've figured out this could be a faster way to write simple entries for a blog, so I'm trying to setup a command to change the default paths temporarily using this:
I have no problem to run Vimwiki2HTML with vimiwiki_markdown with this configuration:
I've figured out this could be a faster way to write simple entries for a blog, so I'm trying to setup a command to change the default paths temporarily using this:
But unfortunately, I keep receiving the message "Vimwiki Error: Conversion to HTML is not supported for this syntax". Am I doing something wrong?