Sha256: 9d046eebfcd120f6413658cc31ec2c9ea87761f639085001c6cee617f0a8eefb
Contents?: true
Size: 808 Bytes
Versions: 5
Compression:
Stored size: 808 Bytes
Contents
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
Version data entries
5 entries across 5 versions & 1 rubygems