File: issue30.md

package info (click to toggle)
ruby-maruku 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,296 kB
  • ctags: 492
  • sloc: ruby: 5,726; xml: 235; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 601 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
List markers typically start at the left margin, but may be indented by up to three spaces. https://github.com/bhollis/maruku/issues/30
*** Parameters: ***
{}
*** Markdown input: ***
This is a list:

  * a list

And this:

   * still a list
*** Output of inspect ***
md_el(:document, [
	md_par("This is a list:"),
	md_el(:ul, md_el(:li, "a list", {:want_my_paragraph=>false})),
	md_par("And this:"),
	md_el(:ul, md_el(:li, "still a list", {:want_my_paragraph=>false}))
])
*** Output of to_html ***
<p>This is a list:</p>

<ul>
<li>a list</li>
</ul>

<p>And this:</p>

<ul>
<li>still a list</li>
</ul>