This seems to be the default CSS part for RMKpack for html output, where blockquotes have:
blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eee; }
You can override this by creating your own CSS file, for example. custom.css :
blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 14px; border-left: 5px solid #eee; }
And then adding it to the title of your RMarkdown document:
--- title: "Untitled" author: "Me" output: html_document: css: custom.css ---
source share