Sync with latest Maruku
Contains Ari Stern's additions for Blahtex support.
This commit is contained in:
parent
e1c7d035c9
commit
37aff87d71
100 changed files with 715 additions and 2848 deletions
46
vendor/plugins/maruku/tests/unittest/lists10.md
vendored
Normal file
46
vendor/plugins/maruku/tests/unittest/lists10.md
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
Write a comment here
|
||||
*** Parameters: ***
|
||||
{} # params
|
||||
*** Markdown input: ***
|
||||
List:
|
||||
|
||||
- è`gcc`
|
||||
|
||||
*** Output of inspect ***
|
||||
md_el(:document,[
|
||||
md_par(["List:"]),
|
||||
md_el(:ul,[
|
||||
md_el(:li_span,["\303\250", md_code("gcc")],{:want_my_paragraph=>false},[])
|
||||
],{},[])
|
||||
],{},[])
|
||||
*** Output of to_html ***
|
||||
<p>List:</p>
|
||||
|
||||
<ul>
|
||||
<li>è<code>gcc</code></li>
|
||||
</ul>
|
||||
*** Output of to_latex ***
|
||||
List:
|
||||
|
||||
\begin{itemize}%
|
||||
\item è{\colorbox[rgb]{1.00,0.93,1.00}{\tt gcc}}
|
||||
|
||||
\end{itemize}
|
||||
*** Output of to_md ***
|
||||
List:
|
||||
|
||||
-¨
|
||||
*** Output of to_s ***
|
||||
List:è
|
||||
*** EOF ***
|
||||
|
||||
|
||||
|
||||
OK!
|
||||
|
||||
|
||||
|
||||
*** Output of Markdown.pl ***
|
||||
(not used anymore)
|
||||
*** Output of Markdown.pl (parsed) ***
|
||||
(not used anymore)
|
Loading…
Add table
Add a link
Reference in a new issue