1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Lists with multiple paragraphs
*** Parameters: ***
{}
*** Markdown input: ***
* A list item with a couple paragraphs,
each of which is indented.
For example, this paragraph.
* Another list item
*** Output of inspect ***
md_el(:document, md_el(:ul, [
md_li([
md_par("A list item with a couple paragraphs, each of which is indented."),
md_par("For example, this paragraph.")
], true),
md_li(md_par("Another list item"), false)
]))
*** Output of to_html ***
<ul>
<li>
<p>A list item with a couple paragraphs, each of which is indented.</p>
<p>For example, this paragraph.</p>
</li>
<li>
<p>Another list item</p>
</li>
</ul>
*** Output of to_latex ***
\begin{itemize}%
\item A list item with a couple paragraphs, each of which is indented.
For example, this paragraph.
\item Another list item
\end{itemize}
|