I want to create a horizontal dashline with the length of page margin using the arydshln package. I've read this but when using \hdashline[1pt/2pt] I get an error. How should I implement \hdashline inside the description environment to get the same result. (It needs to be inside the description environement)
My code is:
\documentclass{article}
\usepackage{lipsum,comment,arydshln}
\author{something}
\title{something}
\begin{document}
\maketitle
\begin{description}
\item[something] \lipsum[20]
\noindent\makebox[\linewidth]{\rule{\textwidth}{1pt}}
\begin{comment}
need a dashline here but I don't know how to implement \hdashline[1pt/2pt] here. Moreover, I need the line to cover the page from margin to margin. This doesn't achieve this
\end{comment}
\item[something] \lipsum[20]
\end{description}
\lipsum[20]
\end{document}
I've realized that I can use \hdashrule[0.5ex][c]{\linewidth}{1pt}{2pt} But this doesn't cover the page from margin to margin.

