# `\multicolumn` with column-type `p` ``` % pandoc --from=latex --to=html \begin{tabular}{rrll} \toprule \textbf{First} & \textbf{Second} & \textbf{Third} & \textbf{Fourth} \\ \toprule 160 & 1 & test & test \\\midrule 160 & 2 & \multicolumn{2}{p{12cm}}{\textit{This is a test:} \begin{equation*} a^2+b^2 = c^2 \end{equation*} }\\ \bottomrule \end{tabular} ^D
First Second Third Fourth
160 1 test test
160 2 This is a test: a2 + b2 = c2
```