pandoc/test/command/4016.md
John MacFarlane 17725a0661 Beamer: put hyperlink after \begin{frame}.
and not in the title.  If it's in the title, then we get
a titlebar on slides with the `plain` attribute, when
the id is non-null.  This fixes a regression from 1.9.x.

Closes #4307.
2018-03-13 10:03:51 -07:00

46 lines
586 B
Markdown

```
pandoc -t beamer
# Level 2 blocks
<div class="columns">
<div class="column" width="40%">
## Block one
- Item
</div>
<div class="column" width="60%">
## Block two
- Item
</div>
</div>
^D
\begin{frame}{Level 2 blocks}
\protect\hypertarget{level-2-blocks}{}
\begin{columns}[T]
\begin{column}{0.40\textwidth}
\begin{block}{Block one}
\begin{itemize}
\tightlist
\item
Item
\end{itemize}
\end{block}
\end{column}
\begin{column}{0.60\textwidth}
\begin{block}{Block two}
\begin{itemize}
\tightlist
\item
Item
\end{itemize}
\end{block}
\end{column}
\end{columns}
\end{frame}
```