mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
7a82686adc
And similar for `\midrule` and `\bottomrule`. This facilitates redefining `\toprule`, `\midrule`, and `\bottomrule` without needing to gobble the ()s. Closes #8223.
274 B
274 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\noalign{}
\endfirsthead
\endhead
\bottomrule\noalign{}
\endlastfoot
one & two \\
\end{longtable}