UNPKG

jira2md

Version:

JIRA to MarkDown text format converter.

78 lines (77 loc) 2.03 kB
<h1 id="biggest-heading">Biggest heading</h1> <h2 id="bigger-heading">Bigger heading</h2> <h1 id="biggest-heading-1">Biggest heading</h1> <h2 id="bigger-heading-1">Bigger heading</h2> <h3 id="big-heading">Big heading</h3> <h4 id="normal-heading">Normal heading</h4> <h5 id="small-heading">Small heading</h5> <h6 id="smallest-heading">Smallest heading</h6> <p><strong>strong</strong><br><em>emphasis</em><br><code>monospaced</code><br><del>deleted</del><br><ins>inserted</ins><br><sup>superscript</sup><br><sub>subscript</sub></p> <pre><code class="language-javascript">var hello = &#39;world&#39;; </code></pre> <p><img src="http://google.com/image" alt=""><br><a href="http://google.com/link"><img src="http://google.com/image" alt=""></a></p> <p><a href="http://google.com">http://google.com</a><br><a href="http://google.com">Google</a></p> <p>GitHub Flavor<br><del>deleted</del></p> <pre><code> preformatted piece of text so *no_ further _formatting* is done here </code></pre> <p><em><strong>Should be bold AND italic</strong></em></p> <ul> <li>First li</li> <li>Second li<ul> <li>Indented li<ul> <li>Three columns in li</li> </ul> </li> </ul> </li> <li>Back to first level li</li> </ul> <ol> <li>First li</li> <li>Second li<ol> <li>Indented li<ol> <li>Three columns in li</li> </ol> </li> </ol> </li> <li>Back to first level li</li> </ol> <ul> <li>Here&#39;s <em>italic</em> inside li</li> <li>here&#39;s <strong>bold</strong> inside li</li> <li>Here&#39;s <em><strong>bold + italic</strong></em> inside li<ul> <li>Here they are in one line indented: <em>italic</em> <strong>bold</strong></li> </ul> </li> </ul> <blockquote> <p>Here&#39;s a long single-paragraph block quote. It should look pretty and stuff.</p> </blockquote> <table> <thead> <tr> <th>A title</th> </tr> </thead> <tbody><tr> <td>Panel text</td> </tr> </tbody></table> <table> <thead> <tr> <th>Heading 1</th> <th>Heading 2</th> </tr> </thead> <tbody><tr> <td>Col A1</td> <td>Col A2</td> </tr> <tr> <td>Col B1</td> <td>Col B2</td> </tr> </tbody></table>