mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 13:45:49 +00:00
And similar for `\midrule` and `\bottomrule`. This facilitates redefining `\toprule`, `\midrule`, and `\bottomrule` without needing to gobble the ()s. Closes #8223.
17 lines
274 B
Markdown
17 lines
274 B
Markdown
```
|
|
% 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}
|
|
```
|