vimwiki

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

commit 7f8c4b56692bbbb019a47acfc7267d8490172023
parent 97e02897f4d7e50c2b0761e590d1ac9785ca2661
Author: Aditya Harit <adi93@users.noreply.github.com>
Date:   Thu, 30 Jul 2020 17:31:55 -0600

Fix: wrong html link conversion in windows (PR #945)


Diffstat:
Mautoload/vimwiki/html.vim | 2+-
Mdoc/vimwiki.txt | 3+++
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/autoload/vimwiki/html.vim b/autoload/vimwiki/html.vim @@ -1745,7 +1745,7 @@ endfunction function! vimwiki#html#Wiki2HTML(path_html, wikifile) abort - let result = s:convert_file(a:path_html, a:wikifile) + let result = s:convert_file(a:path_html, vimwiki#path#wikify_path(a:wikifile)) if result !=? '' call s:create_default_CSS(a:path_html) endif diff --git a/doc/vimwiki.txt b/doc/vimwiki.txt @@ -3687,12 +3687,14 @@ Contributors and their Github usernames in roughly chronological order: - flex (@bratekarate) - Marius Lopez (@PtitCaius) - Edward Bassett (@ebassett) + - Aditya Harit (@adi93) - Gaurang Kher (@gaurangkher) - Rafael Castillo (@eltrufas) - Reiner Herrmann (@reinerh) - Ryan Winograd - Birger Niklas (@BirgerNi) + ============================================================================== 16. Changelog *vimwiki-changelog* @@ -3703,6 +3705,7 @@ http://code.google.com/p/vimwiki/issues/list. They may be accessible from https://github.com/vimwiki-backup/vimwiki/issues. New:~ + * Issue #942: Fixing wrong html link conversion in windows * PR #946: Add option |g:vimwiki_commentstring| to customize commentstring * Issue #940: Render table header inside thead element and rest under tbody element if table header specified in wiki