vimwiki

Personal wiki for vim
git clone https://github.com/vimwiki/vimwiki.git
Log | Files | Refs | README | LICENSE

commit d1b3fe34c9a9369c51424c04de6163b11e5c20f8
parent a51052cbe6676dad749ca4c54cc6957c41868c28
Author: Tinmarino <tinmarino@gmail.com>
Date:   Sat, 22 Aug 2020 12:40:54 -0400

Fix: Vimwiki2HTMLBrowse broken when using a custom converter (Issue #992)

Diffstat:
Mautoload/vimwiki/html.vim | 6+++---
Mftplugin/vimwiki.vim | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/autoload/vimwiki/html.vim b/autoload/vimwiki/html.vim @@ -1790,23 +1790,23 @@ function! s:convert_file(path_html, wikifile) abort let done = 0 let wikifile = fnamemodify(a:wikifile, ':p') let path_html = expand(a:path_html).vimwiki#vars#get_bufferlocal('subdir') + let htmlfile = fnamemodify(wikifile, ':t:r').'.html' if s:use_custom_wiki2html() let force = 1 call vimwiki#html#CustomWiki2HTML(path_html, wikifile, force) let done = 1 - return '' + return path_html . htmlfile endif if s:syntax_supported() && done == 0 - let htmlfile = fnamemodify(wikifile, ':t:r').'.html' let html_lines = s:convert_file_to_lines_template(wikifile, path_html . htmlfile) if html_lines == [] return '' endif call vimwiki#path#mkdir(path_html) call writefile(html_lines, path_html.htmlfile) - return path_html.htmlfile + return path_html . htmlfile endif call vimwiki#u#error('Conversion to HTML is not supported for this syntax') diff --git a/ftplugin/vimwiki.vim b/ftplugin/vimwiki.vim @@ -158,7 +158,7 @@ setlocal formatoptions-=r setlocal formatoptions-=o setlocal formatoptions-=2 setlocal formatoptions+=n -" Used to join blockquotes (see: #915) +" Used to join 'commented' lines (blockquote, list) (see: #915) if v:version > 703 setlocal formatoptions+=j endif