Mercurial > public > sg101
comparison gpp/templates/core/markdown_help.html @ 369:1688873085e0
Updated the markdown help template for the new strikethrough and newline handling.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 Mar 2011 21:29:12 +0000 |
parents | f54bf3b3bece |
children |
comparison
equal
deleted
inserted
replaced
368:b76af55aafe4 | 369:1688873085e0 |
---|---|
15 </tr> | 15 </tr> |
16 <tr> | 16 <tr> |
17 <th>Manual Line Breaks</th> | 17 <th>Manual Line Breaks</th> |
18 <td> | 18 <td> |
19 <pre>To insert a line break | 19 <pre>To insert a line break |
20 end a line with two or more spaces. | 20 just type return. |
21 </pre></td> | 21 </pre></td> |
22 <td> | 22 <td> |
23 <p>To insert a line break <br /> | 23 <p>To insert a line break <br /> |
24 end a line with two or more spaces.</p> | 24 just type return.</p> |
25 </td> | 25 </td> |
26 </tr> | 26 </tr> |
27 <tr> | 27 <tr> |
28 <th>Emphasis</th> | 28 <th>Emphasis</th> |
29 <td> | 29 <td> |
30 <pre>*italic* | 30 <pre>*italic* |
31 _italic_ | 31 _italic_ |
32 **bold** | 32 **bold** |
33 __bold__</pre></td> | 33 __bold__ |
34 ***bold and italic*** | |
35 ___bold and italic___ | |
36 </pre></td> | |
34 <td><i>italic</i><br /> | 37 <td><i>italic</i><br /> |
35 <i>italic</i><br /> | 38 <i>italic</i><br /> |
36 <b>bold</b><br /> | 39 <b>bold</b><br /> |
37 <b>bold</b></td> | 40 <b>bold</b><br /> |
41 <b><i>bold and italic</i></b><br /> | |
42 <b><i>bold and italic</i></b> | |
43 </td> | |
38 </tr> | 44 </tr> |
39 <tr> | 45 <tr> |
40 <th>Inline links</th> | 46 <th>Inline links</th> |
41 <td>A link to [Google](http://google.com).</td> | 47 <td>A link to [Google](http://google.com).</td> |
42 <td>A link to <a href="http://google.com">Google</a>.</td> | 48 <td>A link to <a href="http://google.com">Google</a>.</td> |
157 <td><pre>###### Header 6</pre></td> | 163 <td><pre>###### Header 6</pre></td> |
158 <td><h6>Header 6</h6></td> | 164 <td><h6>Header 6</h6></td> |
159 </tr> | 165 </tr> |
160 <tr> | 166 <tr> |
161 <th>Strikethrough</th> | 167 <th>Strikethrough</th> |
162 <td><pre>--This text is deleted--</pre></td> | 168 <td><pre>---This text is deleted---</pre></td> |
163 <td><del>This text is deleted</del></td> | 169 <td><del>This text is deleted</del></td> |
164 </tr> | 170 </tr> |
165 </table> | 171 </table> |
166 <p> | 172 <p> |
167 More help: | 173 More help: |