Skip to content
This repository was archived by the owner on Jun 10, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion snippets/html.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ snippet link
<link rel="${1:stylesheet}" href="${2:/css/master.css}" type="text/css" media="${3:screen}" charset="utf-8"`Close()`>${4}
snippet mailto
<a href="mailto:${1:[email protected]}?subject=${2:feedback}">${3:email me}</a>
snippet a
<a href="{1:some.html}">{2:text}</a>{3}
snippet aname
<a name="{1:name}">{2:text}</a>{3}
snippet meta
<meta name="${1:name}" content="${2:content}"`Close()`>${3}
snippet opt
Expand All @@ -184,7 +188,7 @@ snippet select
snippet table
<table border="${1:0}">
<tr><th>${2:Header}</th></tr>
<tr><th>${3:Data}</th></tr>
<tr><td>${3:Data}</td></tr>
</table>${4}
snippet textarea
<textarea name="${1:Name}" rows="${2:8}" cols="${3:40}">${4}</textarea>${5}