FIX: Don't autolink within a markdown link.

This commit is contained in:
Robin Ward
2013-11-04 14:24:40 -05:00
parent cc47ade2ed
commit b8e63719f8
2 changed files with 10 additions and 0 deletions

View File

@ -261,6 +261,12 @@ test("Oneboxing", function() {
});
test("links with full urls", function() {
cooked("[http://eviltrout.com][1] is a url\n\n[1]: http://eviltrout.com",
"<p><a href=\"http://eviltrout.com\">http://eviltrout.com</a> is a url</p>",
"it supports links that are full URLs");
});
test("Code Blocks", function() {
cooked("```\na\nb\nc\n\nd\n```",