I am using pandoc to convert from markdown to LaTeX. My problem is that Pandoc seems to interpret paragraph text following a block quote as the start of a new paragraph. While this is often what I want, there are many times that I want to continue the paragraph preceeding the quote. This is achieved easily enough in LaTeX---I simply insert the quote environment into the paragraph without leaving any blank lines between the quote and the surrounding lines, like this:
This is the first sentence of paragraph ONE.
\begin{quote}
This is a block quote.
\end{quote}
This is the second sentence of paragraph ONE.
This is the first sentence of paragraph TWO.
But since Pandoc requires block quotes be followed by a blank line, the only output I can manage looks like this:
This is the first sentence of paragraph ONE.
\begin{quote}
This is a block quote.
\end{quote}
This is the first sentence of paragraph TWO.
This is the first sentence of paragraph THREE.
How can I get pandoc to output LaTeX like my first example?