Hi Mara,
Thanks for looking into this!
Initially, pasting your code didn't resolve our issue (the title was still in a different slide). That's until I noticed that your code has 3 ### (just like the one in the gist I posted) while the rest of the slides had only 2 ##. This immediately reminded me of https://github.com/sol-eng/powerpoint/blob/master/vignettes/3-structuring-the-presentation.Rmd#L5 that Nathan mention in his webinar. Looking at file again, the answer lies in this rule: https://github.com/sol-eng/powerpoint/blob/master/vignettes/3-structuring-the-presentation.Rmd#L38
**By default, Pandoc sets the slide level to the highest header level in the hierarchy that is followed immediately by content somewhere in the document.**
Since the first slide has only 2 ##:
## R Markdown
This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
We needed to use 2 ## instead of 3 ### for the slide title. So changing our code to:
## Two column
:::::::::::::: {.columns}
::: {.column}
hello
:::
::: {.column}
bye
:::
::::::::::::::
or your code to
## 4. Two Content
:::::::::::::: {.columns}
::: {.column}
* This layout has a placeholder for a title and two placeholders for content.
* This layout is used when you specify two columns for a content slides at the slide level.
:::
::: {.column}
```
:::::::::::::: {.columns}
::: {.column}
contents...
:::
::: {.column}
contents...
:::
::::::::::::::
```
:::
::::::::::::::
Now both slides work!
Here's the corrected gist: https://gist.github.com/lcolladotor/559b085b573a8d7a865110fa7b564006
Thanks,
Leo