I would like to include a blockquote in an RMarkdown ioslides presentation but the RMarkdown syntax for blockquote doesn't seem to work for ioslides_presentation output.
This is my code:
---
title: "La recherche reproductible"
date: '2017-08-06'
output:
ioslides_presentation:
css: style_presentation.css
---
## First slide
> Every project you work on, always at least have one collaborator, and that's future you.
Hadley Wickham, chief scientist at RStudio
Here is a screenshot of my output. 
Thanks for your help!
I've only now stumbled across your post from 1.5 years ago, with a similar requirement/question (how to get blockquotes in an
ioslidespresentation).For what it's (still) worth, here's what I've come up with.
First we add a custom
blockquotestyle to the CSS file (adapted from here):Then assuming
styles.cssis the CSS file containing aboveblockquotestylingproduces
Or slightly more concise (thanks to @KonradRudolph), we can use the usual
>syntax with the custom CSS