File: lists_blank.md

package info (click to toggle)
ruby-maruku 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,304 kB
  • sloc: ruby: 5,741; xml: 235; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 489 bytes parent folder | download | duplicates (3)
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
Lists should allow newlines between items.
*** Parameters: ***
{}
*** Markdown input: ***
*   A list item



*   Another list item
*** Output of inspect ***
md_el(:document,[
	md_el(:ul,[
    md_li(md_par("A list item"), true),
    md_li(md_par("Another list item"), false)
	])
])
*** Output of to_html ***
<ul>
<li>
<p>A list item</p>
</li>
<li>
<p>Another list item</p>
</li>
</ul>
*** Output of to_latex ***
\begin{itemize}%
\item A list item


\item Another list item



\end{itemize}