Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 839 Bytes

list_multipara.md

File metadata and controls

42 lines (32 loc) · 839 Bytes

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 ***

  • A list item with a couple paragraphs, each of which is indented.

    For example, this paragraph.

  • Another list item

*** 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}