81e31ee637
Tables with an identifier are marked with a `\label`. A caption is always included in this case, even if the caption is empty. Closes: #8219
14 lines
231 B
Markdown
14 lines
231 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()
|
|
\endhead
|
|
one & two \\
|
|
\bottomrule()
|
|
\end{longtable}
|
|
```
|