I've been trying to create this table (it's meant for a Troubleshooting guide) but can't make both enumerates to align properly. I need every number to be side by side with each other.
The table is not something mandatory, I've tried to do something similar using minipage but results still far from what I need.
My question is very similar to others, solutions like this looks fine but I couldn't make it work inside a table. Or this other one would be great, but I can't convert the beamer way to article class.
I really don't want to be adding manual spacing since I might have to change the content etc. Manual numbering and separated rows are my last option.
\documentclass{article}
\usepackage{paracol, blindtext}
\begin{document}
\begin{tabular}{|lp{0.3\textwidth}p{0.5\textwidth}|}
\hline
Short text & Short text & Short text \\
\hline
Short text &
\begin{enumerate}
\item Short text
\item Short text
\item Short text
\item Short text
\end{enumerate}
&
\begin{enumerate}
\item Short text.
\item \blindtext
\item Short text
\item Short text
\end{enumerate}
\\
\hline
\end{tabular}\end{document}


\items{lefthand item}{righthgand item}. – Aug 16 '16 at 23:56