Sha256: 13aabc2c696ed7be54934b4aa820f6d2af16e57cd8558b2ef96d5848bde240cd
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
list syntax needs a newline before it to be a valid list! *** Parameters: *** {} *** Markdown input: *** This is not a list: * one * two This is a list: * one * two This is a list: * one ciao This is a list: 1. one 1. two This is a list: 1987. one ciao *** Output of inspect *** md_el(:document,[ md_par(["This is not a list: * one * two"]), md_par(["This is a list:"]), md_el(:ul,[md_li("one", false), md_li("two", false)],{},[]), md_par(["This is a list:"]), md_el(:ul,md_li("one ciao", false),{},[]), md_par(["This is a list:"]), md_el(:ol,[md_li("one", false), md_li("two", false)],{},[]), md_par(["This is a list:"]), md_el(:ol,md_li("one ciao", false),{},[]) ],{},[]) *** Output of to_html *** <p>This is not a list: * one * two</p> <p>This is a list:</p> <ul> <li>one</li> <li>two</li> </ul> <p>This is a list:</p> <ul> <li>one ciao</li> </ul> <p>This is a list:</p> <ol> <li>one</li> <li>two</li> </ol> <p>This is a list:</p> <ol> <li>one ciao</li> </ol> *** Output of to_latex *** This is not a list: * one * two This is a list: \begin{itemize}% \item one \item two \end{itemize} This is a list: \begin{itemize}% \item one ciao \end{itemize} This is a list: \begin{enumerate}% \item one \item two \end{enumerate} This is a list: \begin{enumerate}% \item one ciao \end{enumerate} *** Output of to_md *** This is a list: -ne -wo This is not a list: * one ciao This is a list: 1. one 2. two This is not a list: 1987. one ciao *** Output of to_s *** This is a list:onetwoThis is not a list: * one ciaoThis is a list:onetwoThis is not a list: 1987. one ciao
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
maruku-0.7.3 | spec/block_docs/lists_need_blank_line.md |