|
1 | | -Hello Page! |
| 1 | +<html> |
| 2 | +<head> |
| 3 | + <meta charset="UTF-8"> |
| 4 | + <title>GitHub Markdown Snippets</title> |
| 5 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> |
| 6 | +</head> |
| 7 | +<body> |
| 8 | + <a href="https://github.com/praveenpuglia/github_markdown_snippets"><img style="position: fixed; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a> |
| 9 | + <div class="container"> |
| 10 | + <div class="page-header"> |
| 11 | + <h1><a href="https://github.com/praveenpuglia/github_markdown_snippets">GitHub Markdown Snippets <small>GitHub flavored Markdown with plain'ol HTML knowledge! Boom!</small></a></h1> |
| 12 | + <p class="clearfix"> |
| 13 | + <img src="https://img.shields.io/badge/Version-1.1.0-brightgreen.svg" alt="Version : 1.1.0"> |
| 14 | + <iframe class="pull-right" src="https://ghbtns.com/github-btn.html?user=praveenpuglia&repo=github_markdown_snippets&type=star&count=false&size=large" frameborder="0" scrolling="0" width="100px" height="30px"></iframe> |
| 15 | + </p> |
| 16 | + </div> |
| 17 | + <div class="panel panel-default"> |
| 18 | + <div class="panel-body"> |
| 19 | + <h2>Installation</h2> |
| 20 | + <hr> |
| 21 | + <p> |
| 22 | + Easiest way to install is via <strong>Package Control</strong>. |
| 23 | + <ul> |
| 24 | + <li>Go to <strong>Command Palette</strong>(<kbd>CTRL + SHIFT + P</kbd> OR <kbd>CMD + SHIFT + P</kbd>)</li> |
| 25 | + <li>Select <strong>Package Control : Install Package</strong></li> |
| 26 | + <li>Search for <strong>Github Markdown Snippets</strong></li> |
| 27 | + </ul> |
| 28 | + </p> |
| 29 | + </div> |
| 30 | + </div> |
| 31 | + |
| 32 | + <div class="panel panel-default"> |
| 33 | + <div class="panel-body"> |
| 34 | + <h2>Usage</h2> |
| 35 | + <p class="alert alert-info"><strong>Heads Up!</strong> Output on this page are Bootstrap styled. </p> |
| 36 | + <hr> |
| 37 | + <p>All you have do is prefix any HTML tag name you know with an <strong>"m"</strong> and hit tab. Long tag names are shortened for better usage.</p> |
| 38 | + <table class="table table-hover table-bordered"> |
| 39 | + <thead> |
| 40 | + <tr> |
| 41 | + <th><kbd>TAB</kbd> Trigger</th> |
| 42 | + <th>Markdown Equivalent</th> |
| 43 | + <th>Output</th> |
| 44 | + </tr> |
| 45 | + </thead> |
| 46 | + <tbody> |
| 47 | + <tr> |
| 48 | + <td>mi</td> |
| 49 | + <td>*Italic Text* </td> |
| 50 | + <td><i>Italic Text</i></td> |
| 51 | + </tr> |
| 52 | + <tr> |
| 53 | + <td>mb</td> |
| 54 | + <td>**Bold Text** </td> |
| 55 | + <td><strong>Bold Text</strong></td> |
| 56 | + </tr> |
| 57 | + <tr> |
| 58 | + <td>mbq</td> |
| 59 | + <td> > Put a nice, beautiful <br> > quote here...</td> |
| 60 | + <td><blockquote>Put a nice beautiful quote here...</blockquote></td> |
| 61 | + </tr> |
| 62 | + <tr> |
| 63 | + <td>mstrike</td> |
| 64 | + <td>~~Strike Through~~</td> |
| 65 | + <td><s>Strike Through</s></td> |
| 66 | + </tr> |
| 67 | + |
| 68 | + <tr> |
| 69 | + <td>mh1</td> |
| 70 | + <td># Heading 1</td> |
| 71 | + <td><h1>Heading 1</h1></td> |
| 72 | + </tr> |
| 73 | + |
| 74 | + <tr> |
| 75 | + <td>mh2</td> |
| 76 | + <td>## Heading 2</td> |
| 77 | + <td><h2>Heading 2</h2></td> |
| 78 | + </tr> |
| 79 | + <tr> |
| 80 | + <td>mh3</td> |
| 81 | + <td>### Heading 3</td> |
| 82 | + <td><h3>Heading 3</h3></td> |
| 83 | + </tr> |
| 84 | + <tr> |
| 85 | + <td>mh4</td> |
| 86 | + <td>#### Heading 4</td> |
| 87 | + <td><h4>Heading 4</h4></td> |
| 88 | + </tr> |
| 89 | + <tr> |
| 90 | + <td>mh5</td> |
| 91 | + <td>##### Heading 5</td> |
| 92 | + <td><h5>Heading 5</h5></td> |
| 93 | + </tr> |
| 94 | + <tr> |
| 95 | + <td>mh6</td> |
| 96 | + <td>###### Heading 6</td> |
| 97 | + <td><h6>Heading 6</h6></td> |
| 98 | + </tr> |
| 99 | + |
| 100 | + <tr> |
| 101 | + <td>mul</td> |
| 102 | + <td>- I <br>- Love <br>- Markdown</td> |
| 103 | + <td> |
| 104 | + <ul> |
| 105 | + <li>I</li> |
| 106 | + <li>Love</li> |
| 107 | + <li>Markdown</li> |
| 108 | + </ul> |
| 109 | + </td> |
| 110 | + </tr> |
| 111 | + |
| 112 | + <tr> |
| 113 | + <td>mul</td> |
| 114 | + <td>1. First Item <br>2. Second Item <br>3. Third Item</td> |
| 115 | + <td> |
| 116 | + <ol> |
| 117 | + <li>First Item</li> |
| 118 | + <li>Second Item</li> |
| 119 | + <li>Third Item</li> |
| 120 | + </ol> |
| 121 | + </td> |
| 122 | + </tr> |
| 123 | + |
| 124 | + <tr> |
| 125 | + <td>mcode</td> |
| 126 | + <td>`Inline Code Snippet`</td> |
| 127 | + <td><code>Inline Code Snippet</code></td> |
| 128 | + </tr> |
| 129 | + |
| 130 | + <tr> |
| 131 | + <td>mpre</td> |
| 132 | + <td>```language <br> Multi-line Code<br>``` </td> |
| 133 | + <td><pre>Multi-line Code</pre></td> |
| 134 | + </tr> |
| 135 | + |
| 136 | + <tr> |
| 137 | + <td>ma</td> |
| 138 | + <td>[Link Title](URL)</td> |
| 139 | + <td><a href="#">Link Title</a></td> |
| 140 | + </tr> |
| 141 | + |
| 142 | + <tr> |
| 143 | + <td>mimg</td> |
| 144 | + <td></td> |
| 145 | + <td><img src="https://camo.githubusercontent.com/d612efdc6605e0a837aae78c8acfd4ea44f9f522/68747470733a2f2f776173696e2e696f2f77702d636f6e74656e742f75706c6f6164732f323031352f30352f73686f77696d6167652e706e67" alt="Image Title"></td> |
| 146 | + </tr> |
| 147 | + |
| 148 | + <tr> |
| 149 | + <td>mtable</td> |
| 150 | + <td> |
| 151 | + | Column 1 | Column 2 | <br> |
| 152 | + | -------- | -------- | <br> |
| 153 | + | Cell 1-1 | Cell 1-2 | <br> |
| 154 | + | Cell 2-1 | Cell 2-2 | |
| 155 | + </td> |
| 156 | + <td> |
| 157 | + <table class="table table-striped table-bordered"><thead> |
| 158 | + <tr> |
| 159 | + <th>Column 1</th> |
| 160 | + <th>Column 2</th> |
| 161 | + </tr> |
| 162 | + </thead><tbody> |
| 163 | + <tr> |
| 164 | + <td>Cell 1-1</td> |
| 165 | + <td>Cell 1-2</td> |
| 166 | + </tr> |
| 167 | + <tr> |
| 168 | + <td>Cell 2-1</td> |
| 169 | + <td>Cell 2-2</td> |
| 170 | + </tr> |
| 171 | + </tbody></table> |
| 172 | + </td> |
| 173 | + </tr> |
| 174 | + <tr> |
| 175 | + <td>mhr</td> |
| 176 | + <td>---</td> |
| 177 | + <td><hr></td> |
| 178 | + </tr> |
| 179 | + </tbody> |
| 180 | + </table> |
| 181 | + </div> |
| 182 | + </div> |
| 183 | + |
| 184 | + </div> |
| 185 | +</body> |
| 186 | +</html> |
0 commit comments