tests/unittest/list2.md in maruku-0.3.0 vs tests/unittest/list2.md in maruku-0.4.0
- old
+ new
@@ -6,45 +6,59 @@
This is the second paragraph in the list item. You're
only required to indent the first line. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit.
+* other
+
*** Output of inspect ***
md_el(:document,[
md_el(:ul,[
md_el(:li,[
md_par(["This is a list item with two paragraphs."]),
- md_par([
+ md_par([
"This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elit"
])
- ] , {:want_my_paragraph=>true})
- ] )
-] )
+ ],{:want_my_paragraph=>true},[]),
+ md_el(:li,[md_par(["other"])],{:want_my_paragraph=>false},[])
+ ],{},[])
+],{},[])
*** Output of to_html ***
<ul>
<li>
<p>This is a list item with two paragraphs.</p>
<p>This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elit</p>
</li>
+
+<li>
+<p>other</p>
+</li>
</ul>
*** Output of to_latex ***
\begin{itemize}%
\item This is a list item with two paragraphs.
This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elit
+\item other
+
+
\end{itemize}
+*** Output of to_md ***
+-This is a list item with two paragraphs.
+This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elit
+-ther
+
+
*** Output of to_s ***
-This is a list item with two paragraphs.This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elit
-*** Output of to_s ***
-This is a list item with two paragraphs.This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elit
+This is a list item with two paragraphs.This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolo sit amet, consectetuer adipiscing elitother
*** EOF ***
OK!
@@ -56,20 +70,24 @@
<li><p>This is a list item with two paragraphs.</p>
<p>This is the second paragraph in the list item. You're
only required to indent the first line. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit.</p></li>
+<li><p>other</p></li>
</ul>
*** Output of Markdown.pl (parsed) ***
<ul>
<li
- ><p>This is a list item with two paragraphs.</p
- >
-
+ ><p>This is a list item with two paragraphs.</p
+ >
<p>This is the second paragraph in the list item. You're
only required to indent the first line. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit.</p
- ></li
- >
+ ></li
+ >
+<li
+ ><p>other</p
+ ></li
+ >
</ul
- >
+ >
\ No newline at end of file