In HTML5, we don't need xml-style close tag.
This commit is contained in:
parent
5a95942a8a
commit
743da3a940
@ -34,15 +34,15 @@ snippet idn
|
|||||||
|
|
||||||
snippet label_and_input
|
snippet label_and_input
|
||||||
<label for="${2:$1}">${1}</label>
|
<label for="${2:$1}">${1}</label>
|
||||||
<input type="${3:text}" name="${4:$2}" id="${5:$2}" value="${6}" />${7}
|
<input type="${3:text}" name="${4:$2}" id="${5:$2}" value="${6}">${7}
|
||||||
|
|
||||||
|
|
||||||
# FORMS
|
# FORMS
|
||||||
# use idn . or n to add id
|
# use idn . or n to add id
|
||||||
snippet input
|
snippet input
|
||||||
<input type="${1:text}" value="${2}" ${3}/>${7}
|
<input type="${1:text}" value="${2}" ${3}>${7}
|
||||||
snippet submit
|
snippet submit
|
||||||
<input type="submit" value="${2}" ${3}/>${7}
|
<input type="submit" value="${2}" ${3}>${7}
|
||||||
snippet textarea
|
snippet textarea
|
||||||
<textarea $1>$2</textarea>
|
<textarea $1>$2</textarea>
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ snippet img
|
|||||||
<img src="$1" alt="$2"/>
|
<img src="$1" alt="$2"/>
|
||||||
# JS/CSS
|
# JS/CSS
|
||||||
snippet css_file
|
snippet css_file
|
||||||
<link rel="stylesheet" href="${1:style.css}" type="text/css" media="${2:all}" />${3}
|
<link rel="stylesheet" href="${1:style.css}" type="text/css" media="${2:all}">${3}
|
||||||
snippet css_block
|
snippet css_block
|
||||||
<link rel="stylesheet" href="${1:style.css}" type="text/css" media="${2:all}">
|
<link rel="stylesheet" href="${1:style.css}" type="text/css" media="${2:all}">
|
||||||
</link>
|
</link>
|
||||||
|
Loading…
Reference in New Issue
Block a user