Markdown: Change default font size of code chunks in ioslides
I am trying to change the font size of a code chunk (more precisely I want to use a smaller font). Take the following basic example: --- title: "Example" output: ioslides_presentation: toc: yes widescreen: yes --- ## Code ```{r, eval=FALSE} print(mtcars) ``` Anyone an idea? Is there a YAML option like code-font-size or something like that? You can change the default font size document wide using <style> pre { font-size: 20px; } </style> which you can put right underneath your YAML header or in a seperate stylesheet (CSS file) that you can include in your YAML. You may want to change the