My Brackets Extension—Starter HTML Template

Create Starter HTML Page
This is the link to my Brackets Extension. It creates a command in the Edit panel and also a keyboard shortcut (CMD+Shift+X) that creates a basic HTML Starter Page. The code created is as follows:
<!doctype html>
<html>
     <head>
          <title>Page Title</title>
          <meta charset=”UTF-8″>
     </head>
     <body>

     </body>
</html>

To install the extension do not unzip it. Open Brackets and go to File>Extension Manager. Just drag the .zip to the Drag .zip here button on the bottom left of the Manager dialog box.

Leave a Reply