I want to start a minipage, with the regular left-indentation, but to have its right margin adjusted with regular page right margin. An example of discrepancy:
\documentclass{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\noindent\emph{Here is the regular text:}
\par\smallskip\noindent
\blindtext
\par\medskip
\noindent\emph{And here is the minipage:}
\par\smallskip
\begin{minipage}{\textwidth}
\blindtext
\end{minipage}
\end{document}