diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-03-25 13:50:13 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-03-25 13:50:13 -0400 |
commit | 1599e909fd5c7a80f51247d7232c7627693206e6 (patch) | |
tree | 13d0ad4279e7123c754ed7b807bed0b819a2bb43 /tests | |
parent | 834f04b887c15017a2e08bb76f8a269d9ae074a2 (diff) | |
download | markdown-1599e909fd5c7a80f51247d7232c7627693206e6.tar.gz markdown-1599e909fd5c7a80f51247d7232c7627693206e6.tar.bz2 markdown-1599e909fd5c7a80f51247d7232c7627693206e6.zip |
Fixed ticket 59. Reference links now strip angle brackets from the url.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basic/links-reference.html | 4 | ||||
-rw-r--r-- | tests/basic/links-reference.txt | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/tests/basic/links-reference.html b/tests/basic/links-reference.html index 165c71a..9780bf3 100644 --- a/tests/basic/links-reference.html +++ b/tests/basic/links-reference.html @@ -7,4 +7,6 @@ <p>Indented <a href="/url">thrice</a>.</p> <p>Indented [four][] times.</p> <pre><code>[four]: /url -</code></pre>
\ No newline at end of file +</code></pre> +<p>With <a href="http://example.com/" title="Angle Brackets">angle brackets</a>.</p> +<p>And <a href="http://example.com/" title="Without angle brackets.">without</a>.</p>
\ No newline at end of file diff --git a/tests/basic/links-reference.txt b/tests/basic/links-reference.txt index b2fa734..9993b10 100644 --- a/tests/basic/links-reference.txt +++ b/tests/basic/links-reference.txt @@ -29,3 +29,11 @@ Indented [four][] times. [b]: /url/ + +With [angle brackets][]. + +And [without][]. + +[angle brackets]: <http://example.com/> "Angle Brackets" +[without]: http://example.com/ "Without angle brackets." + |