I often create tables in LaTeX and fill them with text or graphics in this way:
\begin{tabular}{cc}
\begin{minipage}{.5\textwidth}
Stuff in column 1 which can be a figure
\end{minipage} &
\begin{minipage}{.5\textwidth}
Stuff in column 2 which can be a figure
\end{minipage}
\end{tabular}
When I use the minipage environment, I no longer have to align the text in columns 1 and 2 by each row, so I can essentially enter, edit, or paste prose as I desire (kind of like creating tables in MS Word...).
Is there such a trick when generating HTML using emacs org-mode?
Edit
To describe my situation better...
If I have prose,
text block 1:
c1, line1
c1, line2
c1, line3
text block 2:
c2, line1
c2, line2
LaTeX:
\begin{tabular}{cc}
\begin{minipage}{.5\textwidth}
c1, line1
c1, line2
c1, line3
\end{minipage} &
\begin{minipage}{.5\textwidth}
c2, line1
c2, line2
\end{minipage}
\end{tabular}
html:
<table>
<tr>
<td>
c1, line1<br>
c1, line2<br>
c1, line3<br>
</td>
<td>
c2, line1<br>
c2, line2<br>
</td>
</tr>
</table>
org-mode:
| c1, line1 | c2, line1 |
| c1, line2 | c2, line2 |
| c1, line3 | |
With org-mode, I would have to manually align text row-wise, whereas with LaTeX I can just drop the text in a minipage environment without concern for how text spanning multiple rows would align.
< COL width=50% />?