pandoc/test/command/3577.md
John MacFarlane b806bff5b4 LaTeX reader: fix bugs omitting raw tex.
The default is `-raw_tex`, so no raw tex should result
unless we explicitly say `+raw_tex`.  Previously some
raw commands did make it through.

Closes #4527.
2018-10-07 12:21:43 -07:00

35 lines
798 B
Markdown

```
% pandoc -f latex -t html5 --quiet
\begin{figure}[ht]
\begin{subfigure}{0.45\textwidth}
\centering
\includegraphics{img1.jpg}
\caption{Caption 1}
\end{subfigure}
\begin{subfigure}{0.45\textwidth}
\centering
\includegraphics{img2.jpg}
\caption{Caption 2}
\end{subfigure}
\caption{Subfigure with Subfloat}
\end{figure}
^D
<figure>
<img src="img1.jpg" alt="Caption 1" /><figcaption>Caption 1</figcaption>
</figure>
<figure>
<img src="img2.jpg" alt="Caption 2" /><figcaption>Caption 2</figcaption>
</figure>
```
```
% pandoc -f latex -t html5
\begin{figure}[ht]
\includegraphics{img1.jpg}
\caption{Caption 3}
\end{figure}
^D
<figure>
<img src="img1.jpg" alt="Caption 3" /><figcaption>Caption 3</figcaption>
</figure>
```