Add shortcut link syntax

This commit is contained in:
Matthew Tretter
2013-07-31 19:22:41 -04:00
parent 934c97b342
commit 1ef4dd1468
2 changed files with 8 additions and 0 deletions

View File

@@ -10,6 +10,11 @@ def test_a_with_title():
assert text == r'[Google](http://google.com "The \"Goog\"")'
def test_a_shortcut():
text = md('<a href="http://google.com">http://google.com</a>')
assert text == r'<http://google.com>'
def test_b():
assert md('<b>Hello</b>') == '**Hello**'