Skip to content

Instantly share code, notes, and snippets.

@bobmurder
Created November 25, 2012 02:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobmurder/4142152 to your computer and use it in GitHub Desktop.
Save bobmurder/4142152 to your computer and use it in GitHub Desktop.
#<start test.md>
Inline *markup* **test**.
Paragraph^block and^(multiple super)^test
~~More~~ inline [tests](http://www.example.com)
Inline `fixed width text` and \*escaped format test\*
The following is a block of code:
def code_block(test):
return double_indent
add_a_tabstop_on_this_line
Done.
#<end test.md>
#<start test.html>
<!-- expected output -->
<p>Inline <i>markup</i> **test**.</p>
<p>Paragraph<sup>block</sup> and<sup>multiple super<sup>test</sup></sup></p>
<p><del>More</del> inline <a href=http://www.example.com>tests</a></p>
<p>Inline <pre>fixed width text</pre> and *escaped format test*</p>
<p>The following is a block of code:</p>
<pre><code>def code_block(test):
return double_indent
add_a_tabstop_on_this_line
</code></pre>
<p>Done.</p>
#<end test.html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment