I cannot find a way to put two videos side by side in quarto/revealjs.
---
title: "prueba"
format: revealjs
---
## Text
::: columns
::: {.column width="50%"}
Blah
:::
::: {.column width="50%"}
Bleh
:::
:::
## Images
::: columns
::: {.column width="50%"}
![cat](pexels-pixabay-45201.jpg)
:::
::: {.column width="50%"}
![cat](pexels-pixabay-45201.jpg)
:::
:::
## Videos
::: columns
::: {.column width="50%"}
<video autoplay loop><source src="full.mp4" type="video/mp4"</video>
:::
::: {.column width="50%"}
<video autoplay loop><source src="zoom.mp4" type="video/mp4"</video>
:::
:::
Is it possible? Is the column environment the way to go? I get a blank screen for the third slide.
Here is a way: