Skip to content

Instantly share code, notes, and snippets.

@mikeplate
Created November 13, 2012 11:00
Show Gist options
  • Select an option

  • Save mikeplate/4065215 to your computer and use it in GitHub Desktop.

Select an option

Save mikeplate/4065215 to your computer and use it in GitHub Desktop.
Snipmate Snippet for HTML
snippet doc
<html>
<head>
<title>${1}</title>
</head>
<body>
${2}
</body>
</html>
snippet doc2
<html>
<head>
<title>${1}</title>
<style>
</style>
</head>
<body>
${2}
<script>
</script>
</body>
</html>
snippet jqa
$.ajax({
url: "${1}",
dataType: "json",
success: function(data) {
},
error: function(xhr, msg) {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment