You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
===== =====
col 1 col 2
===== =====
1 Second column of row 1.
2 Second column of row 2.
Second line of paragraph.
3 - Second column of row 3.
- Second item in bullet
list (row 3, column 2).
\ Row 4; column 1 will be empty.
===== =====
$ pandoc -f rst -t beamer /tmp/test.rst
\begin{frame}
\begin{longtable}[c]{@{}ll@{}}
\hline\noalign{\medskip}
col 1 & col 2
\\\noalign{\medskip}
\hline\noalign{\medskip}
1 & Second column of row 1.
\\\noalign{\medskip}
2 & Second column of row 2.
\\\noalign{\medskip}
& Second line of paragraph.
\\\noalign{\medskip}
3 & - Second column of row 3.
\\\noalign{\medskip}
& - Second item in bullet
\\\noalign{\medskip}
& list (row 3, column 2).
\\\noalign{\medskip}
& Row 4; column 1 will be empty.
\\\noalign{\medskip}
\hline\end{longtable}
\end{frame}
The text was updated successfully, but these errors were encountered:
According to http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#simple-tables one can add lines to an existing line by adding an empty cell. In the produced beamer that example ends up creating one line for every line.
Example ReST
$ pandoc -f rst -t beamer /tmp/test.rst
The text was updated successfully, but these errors were encountered: