Last active
September 13, 2021 13:09
-
-
Save sineemore/f85cbb7bb9f2bd07e9460e42c16f64b5 to your computer and use it in GitHub Desktop.
document.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 id="sample-markdown">Sample Markdown</h1> | |
<p>This is some basic, sample markdown.</p> | |
<h2 id="second-heading">Second Heading</h2> | |
<ul> | |
<li>Unordered lists, and:<ol> | |
<li>One</li> | |
<li>Two</li> | |
<li>Three</li> | |
</ol> | |
</li> | |
<li>More</li> | |
</ul> | |
<blockquote> | |
<p>Blockquote</p> | |
</blockquote> | |
<p>And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere. And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere. And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere. And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere.</p> | |
<p>And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere.</p> | |
<p>And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere.</p> | |
<p>And <strong>bold</strong>, <em>italics</em>, and even <em>italics and later <strong>bold</strong></em>. Even <del>strikethrough</del>. <a href="https://markdowntohtml.com">A link</a> to somewhere.</p> | |
<p>And code highlighting:</p> | |
<pre><code class="lang-js"><span class="hljs-keyword">var</span> foo = <span class="hljs-string">'bar'</span>; | |
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">baz</span><span class="hljs-params">(s)</span> </span>{ | |
<span class="hljs-keyword">return</span> foo + <span class="hljs-string">':'</span> + s; | |
} | |
</code></pre> | |
<p>Or inline code like <code>var foo = 'bar';</code>.</p> | |
<p>Or an image of bears</p> | |
<p><img src="http://placebear.com/200/200" alt="bears"></p> | |
<p>The end ...</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment