Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

captions in LaTeX tables are not rendered #1204

Closed
apepe opened this issue Mar 25, 2014 · 0 comments
Closed

captions in LaTeX tables are not rendered #1204

apepe opened this issue Mar 25, 2014 · 0 comments

Comments

@apepe
Copy link

apepe commented Mar 25, 2014

If I feed a simple LaTeX table to Pandoc (1.12.3), e.g.

\begin{table}[h!]
\begin{tabular}{ll}
x&y\\
\end{tabular}
\caption{A caption}
\end{table}

and convert it to HTML using pandoc -s table.tex -o table.html
the resulting table will lack the caption (moreover, it also prints the characters '[h!]' which is just for table positioning):

<p>[h!]</p>
<table>
<tbody>
<tr class="odd">
<td align="left">x</td>
<td align="left">y</td>
</tr>
</tbody>
</table>
jgm added a commit that referenced this issue Mar 25, 2014
Positioning options no longer rendered verbatim.
Partially addresses #1204.
@jgm jgm closed this as completed in 69a7c9f Mar 26, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant