mirror of
https://github.com/mattn/emmet-vim.git
synced 2025-12-07 19:24:27 +08:00
Fix lost attributes. Close #121
This commit is contained in:
@@ -26,7 +26,7 @@ function! zencoding#lang#haml#toString(settings, current, type, inline, filters,
|
|||||||
if len(current.name) > 0
|
if len(current.name) > 0
|
||||||
let str .= '%' . current_name
|
let str .= '%' . current_name
|
||||||
let tmp = ''
|
let tmp = ''
|
||||||
for attr in zencoding#util#unique(current.attrs_order)
|
for attr in zencoding#util#unique(current.attrs_order + keys(current.attr))
|
||||||
if !has_key(current.attr, attr)
|
if !has_key(current.attr, attr)
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -322,10 +322,7 @@ function! zencoding#lang#html#toString(settings, current, type, inline, filters,
|
|||||||
endif
|
endif
|
||||||
if len(current_name) > 0
|
if len(current_name) > 0
|
||||||
let str .= '<' . current_name
|
let str .= '<' . current_name
|
||||||
for attr in zencoding#util#unique(current.attrs_order)
|
for attr in zencoding#util#unique(current.attrs_order + keys(current.attr))
|
||||||
if !has_key(current.attr, attr)
|
|
||||||
continue
|
|
||||||
endif
|
|
||||||
let val = current.attr[attr]
|
let val = current.attr[attr]
|
||||||
if dollar_expr
|
if dollar_expr
|
||||||
while val =~ '\$\([^#{]\|$\)'
|
while val =~ '\$\([^#{]\|$\)'
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ function! zencoding#lang#slim#toString(settings, current, type, inline, filters,
|
|||||||
endif
|
endif
|
||||||
if len(current.name) > 0
|
if len(current.name) > 0
|
||||||
let str .= current_name
|
let str .= current_name
|
||||||
for attr in zencoding#util#unique(current.attrs_order)
|
for attr in zencoding#util#unique(current.attrs_order + keys(current.attr))
|
||||||
if !has_key(current.attr, attr)
|
if !has_key(current.attr, attr)
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user