Skip to content

Instantly share code, notes, and snippets.

@minivan
Last active March 8, 2016 17:27
Show Gist options
  • Save minivan/a2de5b21a649d7ad0f7f to your computer and use it in GitHub Desktop.
Save minivan/a2de5b21a649d7ad0f7f to your computer and use it in GitHub Desktop.
CourseWork. Assignment 1. Output.
<h1>Hello FAF, this is a document</h1>
<p>So we're trying to do interesting documents</p>
<p>They are actually quide <strong>hard</strong>
Not that <em>easy</em></p>
<p>What happens if we do ##this?</p>
<p>How about <code><em>this</strong></em>?</p>
<p><strong>it <em>wor<code>k</code>s!</em></strong></p>
<p>Let me put a bold link: <a href="http://41.media.tumblr.com/49a58542fd70b8ca39b5bd0d9c9c53aa/tumblr_nob40mvTN41tb9nzio1_500.jpg"><strong>stuff</strong></a></p>
<h2>Okay, part two</h2>
<p>But there's no part two!</p>
<h6>So long!</h6>
@pavelpascari
Copy link

I'm not sure if the line 10 of the output is following markdown definitions.
Currently: <p>How about <code><em>this</strong></em>?</p>

I suggest the following variations:
<p>How about <code>*this*</code>?</p>
or
<p>How about <code><em>this</em>?</p>

I think that the first one fits, because according to github's markdown, the output of "How about *this*?" is "How about *this*?".
Can you please update the gists so that the tests will be consistent?

Thanks in advance.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment