pandoc/test/command/latex-center.md
Igor Pashev 630b1bff2b
LaTeX reader: preserve center environment (#6852)
The contents of the `center` environment are put in a `Div`
with class `center`.
2020-11-26 12:04:31 -08:00

13 lines
142 B
Markdown

# `\begin{center}`
```
% pandoc -f latex -t native
\begin{center}
Hello
\end{center}
^D
[Div ("",["center"],[])
[Para [Str "Hello"]]]
```