pandoc/test/command/3779.md

58 lines
841 B
Markdown
Raw Normal View History

2017-07-01 19:31:43 +02:00
```
% pandoc -f latex -t native
\newcommand{\fakeitemize}[1]{
\begin{itemize}
#1
\end{itemize}
}
\newcommand{\testcmd}[1]{
#1
}
\fakeitemize{
\item Pandoc is 100\% awesome.
}
\begin{itemize}
\item Pandoc is 200\% awesome.
\end{itemize}
\testcmd{
Pandoc is 300\% awesome.
}
^D
[ BulletList
[ [ Para
[ Str "Pandoc"
, Space
, Str "is"
, Space
, Str "100%"
, Space
, Str "awesome."
]
]
]
, BulletList
[ [ Para
[ Str "Pandoc"
, Space
, Str "is"
, Space
, Str "200%"
, Space
, Str "awesome."
]
]
]
, Para
[ Str "Pandoc"
, Space
, Str "is"
, Space
, Str "300%"
, Space
, Str "awesome."
]
]
2017-07-01 19:31:43 +02:00
```