Improve html <div> snippet

The "class" attribute is commonly set for <div>s, but the current
snippet definition makes it difficult to create any attributes other
than "id".  Setup that attribute as the id is done, so that either or
both may be easily included.
This commit is contained in:
Aaron Schrab 2013-07-19 18:04:27 -04:00
parent f3adc723ad
commit 1ad668df2d

View File

@ -167,7 +167,7 @@ snip.rv = snip.fn and 'Hallo' or 'Nothin'
endsnippet
snippet div "XHTML <div>"
<div`!p snip.rv=' id="' if t[1] else ""`${1:name}`!p snip.rv = '"' if t[1] else ""`>
<div`!p snip.rv=' id="' if t[1] else ""`${1:name}`!p snip.rv = '"' if t[1] else ""``!p snip.rv=' class="' if t[2] else ""`${2:name}`!p snip.rv = '"' if t[2] else ""`>
$0
</div>
endsnippet