[Tex/LaTex] prevent page break inside a sentence

page-breaking

I am asked to not break sentences so that they are on two pages. Is there a way to globally and automatically prevent sentences to be split into two pages? It should look like it would be a new paragraph. Of course, I could manually enter a blank line in front of each sentence that is split but this would be inconvenient as it has to be adapted each time new text is inserted before that sentence.

EDIT:
Example code:

\documentclass{article}
\usepackage{lipsum}% MWE only

\begin{document}
%\raggedbottom
%\interlinepenalty=10000

%This is the current text:

\lipsum[1-5]

Here is a new paragraph with a sentence that is split. This is the sentence which should be completely on the next page. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split.

\lipsum[6-7]

\clearpage

%The layout which is asked for could be produced with the following commands. However, I would like to have it automated because there are a lot of these split sentences and in addition, I would have to always recheck all these sentences if I enter new text above.

\lipsum[1-5]

Here is a new paragraph with a sentence that is split. 

\noindent This is the sentence which should be completely on the next page. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split.

\lipsum[6-7]

\clearpage

% or:

\lipsum[1-5]

Here is a new paragraph with a sentence that is split. \linebreak This is the sentence which should be completely on the next page. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split.

\lipsum[6-7]

\clearpage

%or

\lipsum[1-5]

Here is a new paragraph with a sentence that is split. \clearpage \noindent This is the sentence which should be completely on the next page. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split. Here is a new paragraph with a sentence that is split.

\lipsum[6-7]

\end{document}

Best Answer

This will prevent paragraphs from being split across pages.

\documentclass{article}
\usepackage{lipsum}% MWE only

\begin{document}
\raggedbottom
\interlinepenalty=10000

\lipsum[1-20]
\end{document}