diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-03-24 22:17:26 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-03-24 22:17:26 -0400 |
commit | 0c09523c55ab40ba628501740eec0423d4c87a86 (patch) | |
tree | 0b59dc0055298b415ac65158dc0525832c668f00 /tests | |
parent | 1599e909fd5c7a80f51247d7232c7627693206e6 (diff) | |
download | markdown-0c09523c55ab40ba628501740eec0423d4c87a86.tar.gz markdown-0c09523c55ab40ba628501740eec0423d4c87a86.tar.bz2 markdown-0c09523c55ab40ba628501740eec0423d4c87a86.zip |
Fixed Ticket 60. The dd in definition lists can now not be indented on secondary lines.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extensions/extra/simple_def-lists.html | 6 | ||||
-rw-r--r-- | tests/extensions/extra/simple_def-lists.txt | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/extensions/extra/simple_def-lists.html b/tests/extensions/extra/simple_def-lists.html index 278e1ec..9448773 100644 --- a/tests/extensions/extra/simple_def-lists.html +++ b/tests/extensions/extra/simple_def-lists.html @@ -34,4 +34,10 @@ line <strong>2</strong> of def 3</p> </ul> </dd> </dl> +<p>and more text.</p> +<dl> +<dt>term 4</dt> +<dd>def4 + line 2 of def 4</dd> +</dl> <p>final text.</p>
\ No newline at end of file diff --git a/tests/extensions/extra/simple_def-lists.txt b/tests/extensions/extra/simple_def-lists.txt index 20c028a..20e9afa 100644 --- a/tests/extensions/extra/simple_def-lists.txt +++ b/tests/extensions/extra/simple_def-lists.txt @@ -26,4 +26,10 @@ term *3* * > blockquote in list +and more text. + +term 4 +: def4 + line 2 of def 4 + final text. |