Skip to content

Instantly share code, notes, and snippets.

@ZoranJambor
Last active December 29, 2015 05:29
Show Gist options
  • Save ZoranJambor/7622520 to your computer and use it in GitHub Desktop.
Save ZoranJambor/7622520 to your computer and use it in GitHub Desktop.
Sublime Text Snippets
<snippet>
<content><![CDATA[
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>${1:Test Title}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
${2}
</style>
</head>
<body>
${3}
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
(function () {
${4}
}());
</script>
</body>
</html>
]]></content>
<tabTrigger>html5</tabTrigger>
</snippet>
<snippet>
<content><![CDATA[
echo '<pre>';
print_r(${1:});
echo '</pre>';
]]></content>
<tabTrigger>printpre</tabTrigger>
<scope>source.php</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment