How can I make the paragraphs in the quote environment appear on the same page?
In this example I would like the paragraph Nula malesuada... to start on the next page:
EMV:
% !TeX program = lualatex
\documentclass[ebook,11pt,twoside,openright]{memoir}
\usepackage[no-math]{fontspec}
\usepackage{polyglossia}
\usepackage{csquotes}
\usepackage{lipsum}
\setdefaultlanguage{spanish}
\begin{document}
\lipsum[1-2]
\begin{quote}
\lipsum[3]
\end{quote}
\end{document}
