├── 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 | ![alt text](http://s19.postimg.org/3skf6mf5t/preview.gif "Snippets Preview") 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\t$1", 15 | "\t\t", 16 | "\t\t", 17 | "\t\t", 18 | "\t", 19 | "\t", 20 | "\t\t", 23 | "\t\t$3", 24 | "\t\t", 25 | "\t", 26 | "" 27 | ], 28 | "description": "A very basic HTML5 boiler plate code." 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "html5-boilerplate", 3 | "displayName": "HTML Boilerplate", 4 | "publisher": "sidthesloth", 5 | "description": "A basic HTML5 boilerplate snippet generator.", 6 | "version": "1.1.1", 7 | "license": "MIT", 8 | "icon": "images/icon.png", 9 | "galleryBanner": { 10 | "color": "#505050", 11 | "theme": "dark" 12 | }, 13 | "engines": { 14 | "vscode": "^0.10.x" 15 | }, 16 | "homepage": "https://github.com/sidthesloth92/vsc_html5_boilerplate/blob/master/README.md", 17 | "bugs": { 18 | "url": "https://github.com/sidthesloth92/vsc_html5_boilerplate/issues", 19 | "email": "sidthesloth92@hotmail.com" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "https://github.com/sidthesloth92/vsc_html5_boilerplate.git" 24 | }, 25 | "categories": [ 26 | "Snippets" 27 | ], 28 | "keywords": [ 29 | "html", 30 | "html5", 31 | "snippet", 32 | "snippets", 33 | "boilerplate" 34 | ], 35 | "contributes": { 36 | "snippets": [ 37 | { 38 | "language": "html", 39 | "path": "./snippets/html.json" 40 | }, 41 | { 42 | "language": "php", 43 | "path": "./snippets/html.json" 44 | }, 45 | { 46 | "language": "ruby", 47 | "path": "./snippets/html.json" 48 | }, 49 | { 50 | "language": "njk", 51 | "path": "./snippets/html.json" 52 | }, 53 | { 54 | "language": "django-html", 55 | "path": "./snippets/html.json" 56 | } 57 | ] 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | [![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) 4 | 5 | ## Visual Studio Code HTML Boilerplate 6 | 7 | This extension provides the standard HTML boilerplate code used in all web applications. 8 | 9 | # Usage 10 | Type 'html5-boilerplate' in an HTML file and select the snippet from the auto suggestion dropdown to get the HTML boilerplate. 11 | 12 | ![alt text](https://s19.postimg.cc/3mig98d5v/html_boilerplate_1_0_3.gif "Snippets Preview") 13 | 14 | # Installation 15 | 16 | 1. Install Visual Studio Code 0.10.1 or higher 17 | 2. Launch VS Code 18 | 3. Launch the command palette by using `Ctrl-Shift-P` (Windows, Linux) or `Cmd-Shift-P` (OSX) 19 | 4. Type in Install Extension and select 'Extensions : Install Extensions' 20 | 5. Type `HTML5 Boilerplate` 21 | 6. Choose the extension from the drop down 22 | 7. Reload Visual Studio Code 23 | 24 | # Usage 25 | 1. Create a new document 26 | 2. Set the language mode to html 27 | 3. Type `html` the auto-complete option for `html5-boilerplate` shows. Select it to generate the boilerplate 28 | 29 | # Contact 30 | If you have any issues report them at [Issues](https://github.com/sidthesloth92/vsc_html5_boilerplate/issues) 31 | 32 | # Source 33 | [Github](https://github.com/sidthesloth92/vsc_html5_boilerplate) 34 | 35 | ## Contributors ✨ 36 | 37 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 |

Dinesh Balaji

💻

R. Andrei Romero Alvarez

💻
48 | 49 | 50 | 51 | 52 | 53 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! --------------------------------------------------------------------------------