├── images ├── icon.png └── preview.gif ├── .vscode ├── extensions.json └── launch.json ├── .github ├── ISSUE_TEMPLATE │ ├── 02-feature-request.md │ └── 01-bug-report.md └── PULL_REQUEST_TEMPLATE.md ├── .all-contributorsrc ├── vsc-extension-quickstart.md ├── LICENSE.md ├── snippets └── html.json ├── package.json └── README.md /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/vsc_html5_boilerplate/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/vsc_html5_boilerplate/HEAD/images/preview.gif -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "name": "Launch Extension", 6 | "type": "extensionHost", 7 | "request": "launch", 8 | "runtimeExecutable": "${execPath}", 9 | "args": [ 10 | "--extensionDevelopmentPath=${workspaceRoot}" 11 | ] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-feature-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F680 Feature request" 3 | about: Suggest a feature for the plugin. 4 | --- 5 | 6 | # 🚀 Feature Request 7 | 8 | ### 📝 Description 9 | 10 | 11 | 12 | ### ✨ Describe the solution you'd like 13 | 14 | 15 | 16 | ### ✍️ Describe alternatives you've considered 17 | 18 | 19 | -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "sidthesloth92", 10 | "name": "Dinesh Balaji", 11 | "avatar_url": "https://avatars3.githubusercontent.com/u/4656109?v=4", 12 | "profile": "http://dbwriteups.wordpress.com", 13 | "contributions": [ 14 | "code" 15 | ] 16 | }, 17 | { 18 | "login": "romxz", 19 | "name": "R. Andrei Romero Alvarez", 20 | "avatar_url": "https://avatars3.githubusercontent.com/u/9219521?v=4", 21 | "profile": "https://github.com/romxz", 22 | "contributions": [ 23 | "code" 24 | ] 25 | } 26 | ], 27 | "contributorsPerLine": 7, 28 | "projectName": "vsc_html5_boilerplate", 29 | "projectOwner": "sidthesloth92", 30 | "repoType": "github", 31 | "repoHost": "https://github.com", 32 | "skipCi": true 33 | } 34 | -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | # README 2 | ## Visual Studio Code HTML Boilerplate 3 | 4 | This extension provides the standard HTML boilerplate code used in all web applications. 5 | 6 | # Usage 7 | Type 'html5-boilerplate' in an HTML file and select the snippet from the auto suggestion dropdown to get the HTML boilerplate. 8 | 9 |  10 | 11 | # Installation 12 | 13 | 1. Install Visual Studio Code 0.10.1 or higher 14 | 2. Launch VS Code 15 | 3. Launch the command palette by using `Ctrl-Shift-P` (Windows, Linux) or `Cmd-Shift-P` (OSX) 16 | 4. Type in Install Extension and select 'Extensions : Install Extensions' 17 | 5. Type `HTML5 Boilerplate` 18 | 6. Choose the extension from the drop down 19 | 7. Reload Visual Studio Code 20 | 21 | # Contact 22 | If you have any issues report them at [Issues](https://github.com/sidthesloth92/vsc_html5_boilerplate/issues) 23 | 24 | # Source 25 | [Github](https://github.com/sidthesloth92/vsc_html5_boilerplate) 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F41E Bug report" 3 | about: Report a bug in the Plugin 4 | --- 5 | 6 | 11 | 12 | # 🐞 Bug Report 13 | 14 | ### ✍️ Description 15 | 16 | 17 | 18 | ### 🕵🏼♂️ Is this a regression? 19 | 20 | 21 | 22 | ### 🔬 Minimal Reproduction 23 | 24 | 25 | 26 | ### 🌍 Your Environment 27 | 28 | 29 | 30 | ### 🔥 Exception or Error or Screenshot 31 | 32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | # ✨ Pull Request
2 |
3 | ### PR Checklist
4 |
5 | Please check if your PR fulfills the following requirements:
6 |
7 | - [ ] The commit message follows our guidelines: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit
8 | - [ ] Docs have been added / updated (for bug fixes / features)
9 |
10 | ### 📓 Referenced Issue
11 |
12 |
13 |
14 | ### ℹ️ About the PR
15 |
16 |
17 |
18 | ## Does this PR introduce a breaking change?
19 |
20 | - [ ] Yes
21 | - [ ] No
22 |
23 | ### 🖼️ Testing Scenarios / Screenshots
24 |
25 |
26 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 Dinesh Balaji
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/snippets/html.json:
--------------------------------------------------------------------------------
1 | {
2 | "html5-boilerplate" : {
3 | "prefix": "html5-boilerplate",
4 | "body" : [
5 | "",
6 | "",
7 | "",
8 | "",
9 | "",
10 | "",
11 | "\t",
12 | "\t\t",
13 | "\t\t",
14 | "\t\tDinesh Balaji 💻 |
45 | R. Andrei Romero Alvarez 💻 |
46 |