Categories
Text Editors

Sublime Text Tricks

  • Write html and press Tab
    • The file should be saved with web extension
      • Example: file_name.html
    • This will generate
        • <!DOCTYPE html>
          <html>
          <head>
          <title></title>
          </head>
          <body>
          </body>
          </html>
          
  • Write div and press Tab
    • This will generate
    • <div></div>
  • Write div.test and press Tab
    • This will generate
    • <div class="test"></div>
  • Write link and press Tab
    • This will generate
    • <link rel="stylesheet" type="text/css" href="">