html5-boilerplate icon indicating copy to clipboard operation
html5-boilerplate copied to clipboard

VS Code Integration?

Open roblarsen opened this issue 2 years ago • 5 comments

Is there something we can do there? Don't mind me, I'm just looking for interesting stuff to do as I try to amp up my OS contributions over this summer.

roblarsen avatar Jun 30 '22 22:06 roblarsen

Do you mean the web version of VS Code for a website? if so, an IFrame should theoretically work.

RealPIEGamer avatar Aug 12 '22 03:08 RealPIEGamer

i would like to help

Ngeti258 avatar Sep 05 '22 10:09 Ngeti258

I would like to help on VS Code intergration

ankit7248 avatar Oct 15 '22 05:10 ankit7248

Someone did something already. How did I not know this?

https://marketplace.visualstudio.com/items?itemName=sidthesloth.html5-boilerplate

roblarsen avatar Nov 01 '22 19:11 roblarsen

It's browsehappy era!

	"html5-boilerplate" : {
		"prefix": "html5-boilerplate",
		"body" : [
			"<!DOCTYPE html>",
			"<!--[if lt IE 7]>      <html class=\"no-js lt-ie9 lt-ie8 lt-ie7\"> <![endif]-->",
			"<!--[if IE 7]>         <html class=\"no-js lt-ie9 lt-ie8\"> <![endif]-->",
			"<!--[if IE 8]>         <html class=\"no-js lt-ie9\"> <![endif]-->",
			"<!--[if gt IE 8]>      <html class=\"no-js\"> <!--<![endif]-->",
			"<html>",
			"\t<head>",
			"\t\t<meta charset=\"utf-8\">",
			"\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">",
			"\t\t<title>$1</title>",
			"\t\t<meta name=\"description\" content=\"\">",
			"\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">",
			"\t\t<link rel=\"stylesheet\" href=\"$2\">",
    		"\t</head>",
    		"\t<body>",
        	"\t\t<!--[if lt IE 7]>",
            "\t\t\t<p class=\"browsehappy\">You are using an <strong>outdated</strong> browser. Please <a href=\"#\">upgrade your browser</a> to improve your experience.</p>",
			"\t\t<![endif]-->",
			"\t\t$3",
			"\t\t<script src=\"$4\" async defer></script>",
			"\t</body>",
			"</html>"
		],
		"description": "A very basic HTML5 boiler plate code."
	}
}```

roblarsen avatar Nov 01 '22 19:11 roblarsen