Skip to content

Instantly share code, notes, and snippets.

@lucasmezencio
Created May 25, 2012 15:03
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save lucasmezencio/2788630 to your computer and use it in GitHub Desktop.
Save lucasmezencio/2788630 to your computer and use it in GitHub Desktop.
HTML5 Snippet for Sublime Text 2
<snippet>
<content><![CDATA[
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta charset=utf-8>
<title>${1:title}</title>
<!--[if lt IE 9]> HTML5Shiv
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
${2:body}
</body>
</html>
]]></content>
<tabTrigger>html5</tabTrigger>
</snippet>
@colorsynthetic
Copy link

Thanks, great snippet.

@tylshe
Copy link

tylshe commented May 31, 2013

It's cool, thanks

@rvanbaalen
Copy link

Why both

<meta charset="utf-8">

and

<meta charset=utf-8>

?

@skopp
Copy link

skopp commented Jul 26, 2013

https://gist.github.com/lucasmezencio/2788630/#comment-866731 - true. looks like a mistake (as one hasn't been enclosed with "__" and I assume that's the wrong one.

@miguelcano-dev
Copy link

great snippet.

@harpreetsingh888
Copy link

Thanks

@kazitanvirahsan
Copy link

Just a trivial issue with one of the lines as mentioned by others. Rather than this it's useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment