forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File snippets for HTML and PHP (microsoft#161881)
* Adding file snippets for HTML and PHP to start small. * Adding TS
- Loading branch information
1 parent
70a7ce4
commit ea5b244
Showing
4 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters