aboutsummaryrefslogtreecommitdiff
path: root/test/command/textcolor.md
blob: 013e55d676fd9436136456307266522cdc6da703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
```
% pandoc -f latex -t native
\textcolor{red}{Hello World}
^D
[Para [Span ("",[],[("style","color: red")]) [Str "Hello",Space,Str "World"]]]
```

```
% pandoc -f latex -t native
\textcolor{blue}{Hello \textbf{World}}
^D
[Para [Span ("",[],[("style","color: blue")]) [Str "Hello",Space,Strong [Str "World"]]]]
```

```
% pandoc -f latex -t native
\textcolor{orange}{
    \begin{itemize}	
        \item Test
    \end{itemize}
}
^D

```