| | @@ -4,11 +4,12 @@ |
| 4 | 4 | # Bullets are "*" surrounded by two spaces at the beginning of a line |
| 5 | 5 | # Enumeration items are "#" or a digit and a "." surrounded by two |
| 6 | 6 | spaces at the beginning of a line |
| 7 | 7 | # Indented paragraphs begin with a tab or two spaces |
| 8 | 8 | # Hyperlinks are contained within square brackets: |
| 9 | | - <nowiki>"[target]" or "[target|label]"</nowiki> |
| 9 | + <nowiki>"<b>[</b><i>target</i><b>]</b>" |
| 10 | + or "<b>[</b><i>target</i><b>|</b><i>label</i><b>]</b>"</nowiki> |
| 10 | 11 | # Most ordinary HTML works |
| 11 | 12 | # <verbatim> and <nowiki> |
| 12 | 13 | |
| 13 | 14 | We call the first five rules above the "wiki" formatting rules. |
| 14 | 15 | The last two rules are the HTML formatting rules. |
| | @@ -54,12 +55,14 @@ |
| 54 | 55 | |
| 55 | 56 | 6. <b>HTML.</b> |
| 56 | 57 | The following standard HTML elements may be used: |
| 57 | 58 | <a> <address> <article> <aside> <b> |
| 58 | 59 | <big> <blockquote> <br> <center> <cite> |
| 59 | | - <code> <col> <colgroup> <dd> <dfn> |
| 60 | + <code> <col> <colgroup> <dd> |
| 61 | + <del> <dfn> |
| 60 | 62 | <div> <dl> <dt> <em> <font> <footer> |
| 63 | + <ins> |
| 61 | 64 | <h1> <h2> <h3> <h4> <h5> <h6> |
| 62 | 65 | <header> <hr> <i> <img> <kbd> <li> |
| 63 | 66 | <nav> <nobr> <nowiki> <ol> <p> <pre> |
| 64 | 67 | <s> <samp> <section> <small> <span> |
| 65 | 68 | <strike> <strong> <sub> <sup> <table> |
| | @@ -74,5 +77,9 @@ |
| 74 | 77 | 7. <b>Special Markup.</b> |
| 75 | 78 | The <nowiki> tag disables all wiki formatting rules through |
| 76 | 79 | the matching </nowiki> element. The <verbatim> tag works |
| 77 | 80 | like <pre> with the addition that it also disables all wiki |
| 78 | 81 | and HTML markup through the matching </verbatim>. |
| 82 | + |
| 83 | +<h2>See Also</h2> |
| 84 | + |
| 85 | + * [/md_rules|Markdown formatting rules] |
| 79 | 86 | |