[Tex/LaTex] Paragraph inside enumerate

#enumerateitemizelistsparagraphs

I want to write a paragraph inside an enumerate. My code is this:

\documentclass[a4paper,11pt]{article}

\usepackage{enumitem}

\begin{document}

\begin{enumerate}[leftmargin=*, listparindent=0.7cm]
\item Example

Example example example example example example example example example
example example example example example example example example example example
example example example example example example example example example example
example example.

\end{enumerate}

\end{document}

and it produces this:
enter image description here

I would like to set the paragraph's alingment to the same point where 1 is without ending the enumerate. I want it to look like this:
enter image description here

Any help would be appreciated.

Best Answer

enter image description here

\documentclass[a4paper,11pt]{article}

\usepackage{enumitem}

\begin{document}

\begin{enumerate}[
leftmargin=0pt, itemindent=20pt,
labelwidth=15pt, labelsep=5pt, listparindent=0.7cm,
align=left]
\item Example

Example example example example example example example example example
example example example example example example example example example example
example example example example example example example example example example
example example.


Example example example example example example example example example
example example example example example example example example example example
example example example example example example example example example example
example example.

\end{enumerate}

\end{document}
Related Question