File: lists10.md

package info (click to toggle)
ruby-maruku 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,304 kB
  • sloc: ruby: 5,741; xml: 235; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (3)
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
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,["è", 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:

- è`gcc`
*** Output of to_s ***
List:è