I would like to be able to pass frame options to beamer via RStudio-Rmarkdown-Pandoc-Beamer path. This would allow to take advantage of beamer's options to suppress frames from being printed. Beamer allows the following:
\documentclass[handout]{beamer}
\begin{document}
\begin{frame}
Slide 1
\end{frame}
\begin{frame}<handout:0>
Slide 2 to be suppressed
\end{frame}
\end{document}
I am aware that the pandoc .tex template can be altered to statically add options to slide frames but would like to do this on the fly something like:
##Slide 1
## Slide 2 <handout:0>