fix comment filter.

This commit is contained in:
mattn
2012-06-07 11:54:37 +09:00
parent f5c6ad10dc
commit d71acb2c22

View File

@@ -376,13 +376,14 @@ function! zencoding#lang#html#toString(settings, current, type, inline, filters,
endif
endif
if len(comment) > 0
let str .= "\n<!-- /" . comment . " -->" . (inline ? "" : "\n")
endif
if !empty(current.parent) && len(current.parent.name) == 0 || (current.multiplier > 0 && current.multiplier == itemno+1 && stridx(','.settings.html.inline_elements.',', ','.current_name.',') == -1)
let str .= "\n"
endif
if len(comment) > 0
let str .= "<!-- /" . comment . " -->" . (inline ? "" : "\n")
endif
return str
endfunction