markdown tables with blocks as entries
I have been using tables to arrange figures, e.g.
> |  | {#Rs .unrevealed} |
{step reveal=Rs}
which works. However I have not been able to add a carousel as one table entry, because i did not find a way to break the line within the table without destroying the table formatting. Is that possible? If not, what is another way that should be used instead?
Hmm, indeed carousels are "block" elements (and not "inlined" elements), and unfortunately markdown syntax for table does not allow block elements in tables...
Maybe you can use a "flexbox container" instead of a table for layout? (Knowing this require some html knowledge, as mentioned in #165 I hope to make it easier to have columns later!):
{style="display:flex"}
> {carousel}
> > Block 1
> >
> > ---
> >
> > Block 2
>
> 
cool! this would make a good example for the docs ;)