Added missing end-quotes to alt attributes.

This commit is contained in:
Christopher Joslyn 2011-08-15 16:37:34 -04:00
parent a98917ade5
commit 3b8237511c

View File

@ -453,11 +453,11 @@ snippet iframe.
snippet iframe# snippet iframe#
<iframe id="${1}" src="${2}" frameborder="0"></iframe>${3} <iframe id="${1}" src="${2}" frameborder="0"></iframe>${3}
snippet img snippet img
<img src="${1}" alt="${2} />${3} <img src="${1}" alt="${2}" />${3}
snippet img. snippet img.
<img class="${1}" src="${2}" alt="${3} />${4} <img class="${1}" src="${2}" alt="${3}" />${4}
snippet img# snippet img#
<img id="${1}" src="${2}" alt="${3} />${4} <img id="${1}" src="${2}" alt="${3}" />${4}
snippet input snippet input
<input type="${1:text/submit/hidden/button/image}" name="${2}" id="${3:$2}" value="${4}" />${5} <input type="${1:text/submit/hidden/button/image}" name="${2}" id="${3:$2}" value="${4}" />${5}
snippet input. snippet input.
@ -471,7 +471,7 @@ snippet input:hidden
snippet input:button snippet input:button
<input type="button" name="${1}" id="${2:$1}" value="${3}" />${4} <input type="button" name="${1}" id="${2:$1}" value="${3}" />${4}
snippet input:image snippet input:image
<input type="image" name="${1}" id="${2:$1}" src="${3}" alt="${4} />${5} <input type="image" name="${1}" id="${2:$1}" src="${3}" alt="${4}" />${5}
snippet input:checkbox snippet input:checkbox
<input type="checkbox" name="${1}" id="${2:$1}" />${3} <input type="checkbox" name="${1}" id="${2:$1}" />${3}
snippet input:radio snippet input:radio