Skip to content

Instantly share code, notes, and snippets.

@jfall76
Created August 13, 2014 17:14
Show Gist options
  • Save jfall76/fe9a697f5bc815b4c232 to your computer and use it in GitHub Desktop.
Save jfall76/fe9a697f5bc815b4c232 to your computer and use it in GitHub Desktop.
Our output after our markdown.js file converts our markdown into html
Output from our markdown file:
<p>h3. Traditional html title</p>
<p>Paragraphs are separated
by a blank line.</p>
<p>Let 2 spaces at the end of a line to do a <br />
line break</p>
<p>Text attributes <em>italic</em>,
<strong>bold</strong>, <code>monospace</code>.</p>
<p>A <a href="http://example.com">link</a>.
&lt;&lt;&lt; No space between ] and ( >>></p>
<p>Shopping list:</p>
<ul>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ul>
<p>Numbered list:</p>
<ol>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ol>
<p>The rain---not the reign---in
Spain.</p>
Output from our string:
<p><strong>bold</strong> <em>italic</em> <a href="http://www.neti.ee">link</a> <code>code block</code></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment