diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-19 16:25:01 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-19 16:25:01 -0700 |
commit | 8fd3d0bdbbd8ba8c681c72a401c517797c2ecd0e (patch) | |
tree | 8d47ef4acc161364993b2ca182bd97e6f16da96a /tests | |
parent | b43873a9ea07afc698d15559717550f8b46e365c (diff) | |
download | pandoc-8fd3d0bdbbd8ba8c681c72a401c517797c2ecd0e.tar.gz |
LaTeX writer: make verbatim environments flush to avoid extra space.
The indented `\end{verbatim}` was causing an extra blank line in
the output.
Closes #277.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/writer.latex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/writer.latex b/tests/writer.latex index ff6e9d58b..15a45a521 100644 --- a/tests/writer.latex +++ b/tests/writer.latex @@ -808,9 +808,9 @@ Here is a footnote reference,\footnote{Here is the footnote. It can go Subsequent blocks are indented to show that they belong to the footnote (as with list items). - \begin{Verbatim} +\begin{Verbatim} { <code> } - \end{Verbatim} +\end{Verbatim} If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.} This should \emph{not} be a footnote reference, because it contains a space.{[}\^{}my note{]} Here is an inline |