aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-11-04 22:17:18 -0500
committerWaylan Limberg <waylan@gmail.com>2008-11-04 22:17:18 -0500
commit00f623253bc80e95921f6055a6db206b548857db (patch)
treee8b0ab1f6efa50b0e0d7a1a5e0f048e2dac35b98 /tests
parent47c8ba4a561d0100feebca93ff0f288757e6e69d (diff)
downloadmarkdown-00f623253bc80e95921f6055a6db206b548857db.tar.gz
markdown-00f623253bc80e95921f6055a6db206b548857db.tar.bz2
markdown-00f623253bc80e95921f6055a6db206b548857db.zip
Fixed Definition List extension to not wrap the content of defs in p tags when appropriate.
Diffstat (limited to 'tests')
-rw-r--r--tests/extensions-x-def_list/simple_def-lists.html12
1 files changed, 3 insertions, 9 deletions
diff --git a/tests/extensions-x-def_list/simple_def-lists.html b/tests/extensions-x-def_list/simple_def-lists.html
index 7cb4d81..278e1ec 100644
--- a/tests/extensions-x-def_list/simple_def-lists.html
+++ b/tests/extensions-x-def_list/simple_def-lists.html
@@ -1,17 +1,11 @@
<p>Some text</p>
<dl>
<dt>term1</dt>
-<dd>
-<p>Def1</p>
-</dd>
+<dd>Def1</dd>
<dt>term2-1</dt>
<dt>term2-2</dt>
-<dd>
-<p>Def2-1</p>
-</dd>
-<dd>
-<p>Def2-2</p>
-</dd>
+<dd>Def2-1</dd>
+<dd>Def2-2</dd>
</dl>
<p>more text</p>
<dl>