FIX: Markdown references within a list were not working properly.

This commit is contained in:
Robin Ward
2013-08-28 13:06:41 -04:00
parent f7ad80ff7b
commit 550ef104c6
2 changed files with 51 additions and 26 deletions
@@ -103,6 +103,10 @@ test("Links", function() {
"<a href=\"http://www.imdb.com/name/nm2225369\">http://www.imdb.com/name/nm2225369</a></p>",
'allows multiple links on one line');
cooked("* [Evil Trout][1]\n [1]: http://eviltrout.com",
"<ul><li><a href=\"http://eviltrout.com\">Evil Trout</a><br></li></ul>",
"allows markdown link references in a list");
});
test("Quotes", function() {