I would like to know if I can have a paragraph break in speech and have the speech marks appear automatically. This would help with converting long text from British style to American style for instance. I would like the text to appear like this, keeping the LaTeX as simple as possible:
'This is a quote,' he said. 'But what is possible?
'Can I do this?'
Here is a MWE of what I can currently obtain but without speech marks at the start of the second paragraph:
\documentclass{article}
\usepackage[british]{babel}
\usepackage{csquotes}
\begin{document}
\enquote{This is a quote} he said. \enquote{But what is possible?
Can I do this}.
\end{document}

