This is my first post to SO and I'm hoping my question is specific enough.
I have written a blog post using servr::jekyll()
[Thanks, Yihui], but the images don't size up correctly on the blog post - they are enormous! When I don't specify the image size, the images show up a little blurry on the post. I've been using this code in my setup chunk of the post:
knitr::opts_chunk$set(
echo = TRUE,
warning = FALSE,
error = FALSE,
message = FALSE,
device = 'png',
fig.width = 6,
fig.height = 6,
dpi = 300
)
The blog post is here and the repository is here.
So what I want is the images to be the same width as the text, and to have good resolution. Any help is very much appreciated!
Please let me know if you require more information.