mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 15:38:09 +08:00
7b7a7d6742
The writer uses features from the longtable package to define the table foot. Furthermore, the table's bottom rule is now part of the foot, where it previously was given as part of the body.
258 B
258 B
% pandoc -f html -t latex
<table id="test">
<tr><td>one</td><td>two</td></tr>
</table>
^D
\begin{longtable}[]{@{}ll@{}}
\caption{}\label{test}\tabularnewline
\toprule()
\endfirsthead
\endhead
\bottomrule()
\endlastfoot
one & two \\
\end{longtable}