I wonder why \parskip is zero inside the tabular environment.
How can i make the paragraphs to be equally vertically spaced inside the tabular environment, just like outside the tabular?
I know about \@parboxrestore and \@minipagerestore, but could not find a reference to fix this inside \begin{tabular}.
\documentclass{article}
\usepackage{array}
\setlength{\parindent}{0mm}
\setlength{\parskip}{8pt}
\begin{document}
\textbf{par inside tabular}
\begin{tabular}{|>{\raggedright}p{8cm}|}
\hline
Lorem ipsum dolor sit amet.
\par{}
Lorem ipsum dolor sit amet.
\par{}
Lorem ipsum dolor sit amet.
\tabularnewline
\hline
\end{tabular}
\textbf{par outside tabular}
Lorem ipsum dolor sit amet.
\par{}
Lorem ipsum dolor sit amet.
\par{}
Lorem ipsum dolor sit amet.
\end{document}
Leads to the following result:


