diff --git a/css/vimwiki.css b/css/vimwiki.css index 9a842ca..28c0c6c 100644 --- a/css/vimwiki.css +++ b/css/vimwiki.css @@ -10,6 +10,10 @@ li.done0 { list-style-type: none; } +li.done1 { + list-style-type: none; +} + li.done4 { list-style-type: none; } diff --git a/default.tpl b/default.tpl index 3cb5e72..22de583 100644 --- a/default.tpl +++ b/default.tpl @@ -104,13 +104,18 @@ }); $('.done0').each(function() { - $(this).html('
'+$(this).html()+'
'); + $(this).html('
'+$(this).html()+'
'); + }); + + $('.done1').each(function() { + $(this).html('
'+$(this).html()+'
'); }); $('.done4').each(function() { - $(this).html('
'+$(this).html()+'
'); + $(this).html('
'+$(this).html()+'
'); }); + // Fade Out Back-To-Top-Link on new page $('.backtotop').fadeOut();