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 43 44 45 46 47 48 49 50 51 52 53 54
|
Sub-lists should be indentable with a single tab.
*** Parameters: ***
{} # params
*** Markdown input: ***
Ciao
* Tab
* Tab
* Tab
*** Output of inspect ***
md_el(:document,[
md_par(["Ciao"]),
md_el(:ul,[md_el(:li,["Tab",
md_el(:ul,[md_el(:li,["Tab",
md_el(:ul,[md_el(:li,["Tab"],{:want_my_paragraph=>false})])],
{:want_my_paragraph=>false})])],
{:want_my_paragraph=>false})])
])
*** Output of to_html ***
<p>Ciao</p>
<ul>
<li>Tab
<ul>
<li>Tab
<ul>
<li>Tab</li>
</ul>
</li>
</ul>
</li>
</ul>
*** Output of to_latex ***
Ciao
\begin{itemize}%
\item Tab\begin{itemize}%
\item Tab\begin{itemize}%
\item Tab
\end{itemize}
\end{itemize}
\end{itemize}
*** Output of to_md ***
Ciao
-ab * Tab * Tab
*** Output of to_s ***
CiaoTab * Tab * Tab
|