Sha256: 252d016c8be10ac465fda9167ee65c75623e033cfefe4176fa19f3665d356dfc

Contents?: true

Size: 830 Bytes

Versions: 5

Compression:

Stored size: 830 Bytes

Contents

Test case given by Scott.

http://rubyforge.org/tracker/index.php?func=detail&aid=8862&group_id=2795&atid=10735

a should not be indented.

*** Parameters: ***
{} # params 
*** Markdown input: ***
* a
  * a1
  * a2
* b


*** Output of inspect ***
md_el(:document,[
	md_el(:ul,[
		md_el(:li,[
			"a",
			md_el(:ul,[
				md_el(:li,["a1"],{:want_my_paragraph=>false},[]),
				md_el(:li,["a2"],{:want_my_paragraph=>false},[])
			],{},[])
		],{:want_my_paragraph=>false},[]),
		md_el(:li,["b"],{:want_my_paragraph=>false},[])
	],{},[])
],{},[])
*** Output of to_html ***
<ul>
<li>a
<ul>
<li>a1</li>

<li>a2</li>
</ul>
</li>

<li>b</li>
</ul>

*** Output of to_latex ***
\begin{itemize}%
\item a\begin{itemize}%
\item a1
\item a2

\end{itemize}

\item b

\end{itemize}
*** Output of to_md ***
-* a1
* a2
-
*** Output of to_s ***
aa1a2b

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
maruku-0.7.3 spec/block_docs/lists7b.md
maruku-0.7.2 spec/block_docs/lists7b.md
maruku-0.7.1 spec/block_docs/lists7b.md
maruku-0.7.0 spec/block_docs/lists7b.md
maruku-0.7.0.beta1 spec/block_docs/lists7b.md