I have a personal blog created via blogdown. I started a new entry (after a long time) via the command:
blogdown::new_post(title="article-r", author="Me",
categories=c("data-science", "stats"),
date=Sys.Date(),
tags=NULL,
ext=".Rmd")
This led to a new Rmd
file:
content/post/2018-08-15-article-r.Rmd
Now I ran the following to build the site and serve it in RStudio
blogdown::build_site(local = FALSE, method = c("html"))
blogdown::serve_site()
After building, the page does create an html file in content/post
:
Rendering content/post/2018-08-15-article-r.Rmd
This seems good, but I can't see the new post served up in the RStudio
viewer pane.
Also I can't see the post appear cached in the cd blogdown/post/
folder.
Could anyone please assist me in ensuring the post is appropriately cached and render it in the viewer pane when running serve_site()