Fix appending '#' to links

Ref #40
This commit is contained in:
EinfachToll 2014-03-13 16:33:39 +01:00
parent 93ca39202c
commit 8167c65499

View File

@ -417,8 +417,11 @@ function! s:tag_wikilink(value) "{{{
if g:vimwiki_debug > 1 if g:vimwiki_debug > 1
echom '[[idx='.idx.', scheme='.scheme.', path='.path.', subdir='.subdir.', lnk='.lnk.', ext='.ext.']]' echom '[[idx='.idx.', scheme='.scheme.', path='.path.', subdir='.subdir.', lnk='.lnk.', ext='.ext.']]'
endif endif
let anchor = substitute(anchor, '#', '-', 'g') if anchor != ''
let line = vimwiki#html#linkify_link(url.'#'.anchor, descr) let anchor = substitute(anchor, '#', '-', 'g')
let url .= '#'.anchor
endif
let line = vimwiki#html#linkify_link(url, descr)
return line return line
endfunction "}}} endfunction "}}}
"}}} "}}}