Skip to content

Commit

Permalink
Merge pull request #393 from DanCouper/incorrect_markup_in_markdown_e…
Browse files Browse the repository at this point in the history
…xercise

Incorrect markup in markdown excercise
  • Loading branch information
Katrina Owen authored Oct 4, 2016
2 parents 76c331e + b8e9897 commit 5b5e807
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exercises/markdown/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
{
"description": "parsing italics",
"input": "_This will be italic_",
"expected": "<p><i>This will be italic</i></p>"
"expected": "<p><em>This will be italic</em></p>"
},
{
"description": "parsing bold text",
"input": "__This will be bold__",
"expected": "<p><em>This will be bold</em></p>"
"expected": "<p><strong>This will be bold</strong></p>"
},
{
"description": "mixed normal, italics and bold text",
"input": "This will _be_ __mixed__",
"expected": "<p>This will <i>be</i> <em>mixed</em></p>"
"expected": "<p>This will <em>be</em> <strong>mixed</strong></p>"
},
{
"description": "with h1 header level",
Expand All @@ -56,7 +56,7 @@
{
"description": "With a little bit of everything",
"input": "# Header!\n* __Bold Item__\n* _Italic Item_",
"expected": "<h1>Header!</h1><ul><li><em>Bold Item</em></li><li><i>Italic Item</i></li></ul>"
"expected": "<h1>Header!</h1><ul><li><strong>Bold Item</strong></li><li><em>Italic Item</em></li></ul>"
}
]
}

0 comments on commit 5b5e807

Please sign in to comment.