Skip to content

Instantly share code, notes, and snippets.

@yacafx
Created August 24, 2014 04:34
Show Gist options
  • Save yacafx/49604039f554ea15d25f to your computer and use it in GitHub Desktop.
Save yacafx/49604039f554ea15d25f to your computer and use it in GitHub Desktop.
Snippet for HTML5 boilerplate for Sublime Text 2 or 3. Save the file on *OS X: ~/Library/Application Support/Sublime Text 3/Packages/User/ *Windows: %APPDATA%\Sublime Text 3\Packages\User\ *Linux: ~/.config/sublime-text-3/Packages/User/
<snippet>
<content><![CDATA[
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
<link rel="stylesheet" href="">
</head>
<body>
</body>
</html>]]></content>
<tabTrigger>ht5</tabTrigger>
<scope>text.html</scope>
<description>HTML5 Boilerplate by yacaFx</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment