mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 02:08:47 +00:00
File snippets for HTML and PHP (#161881)
* Adding file snippets for HTML and PHP to start small. * Adding TS
This commit is contained in:
18
extensions/html/snippets/html.code-snippets
Normal file
18
extensions/html/snippets/html.code-snippets
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"html doc": {
|
||||
"isFileTemplate": true,
|
||||
"body": [
|
||||
"<!DOCTYPE html>",
|
||||
"<html>",
|
||||
"<head>",
|
||||
"\t<meta charset=\"UTF-8\" />",
|
||||
"\t<title>${1:title}</title>",
|
||||
"</head>",
|
||||
"<body>",
|
||||
"\t$0",
|
||||
"</body>",
|
||||
"</html>"
|
||||
],
|
||||
"description": "HTML Document"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user