vimwiki

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

commit 1b6b50a3b70db4d6b824e2d36d15ffb7252ce33d
parent 41ddc28c9e9147870ac28d6764f4a0c9e816cc26
Author: EinfachToll <istjanichtzufassen@googlemail.com>
Date:   Thu, 14 Aug 2014 13:49:45 +0200

Don't break after bold text in HTML output

Diffstat:
Mautoload/vimwiki/html.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/autoload/vimwiki/html.vim b/autoload/vimwiki/html.vim @@ -286,7 +286,7 @@ function! s:tag_strong(value, header_ids) "{{{ let complete_id = complete_id[:-2] endif let complete_id .= '-'.id - return '<div id="'.s:safe_html_anchor(complete_id).'"></div><strong id="' + return '<span id="'.s:safe_html_anchor(complete_id).'"></span><strong id="' \ .id.'">'.text.'</strong>' endfunction "}}}