pandoc/test/command/5635.md

24 lines
312 B
Markdown
Raw Normal View History

```
% pandoc -f latex -t plain
\providecommand{\test}{foo}
\providecommand{\test}{bar}
The value is: \test
^D
The value is: foo
```
```
% pandoc -f latex -t plain
\provideenvironment{test}{startfoo}{stopfoo}
\provideenvironment{test}{startbar}{stopbar}
\begin{test}
Hi
\end{test}
^D
startfoo Hi stopfoo
```