blogdown
blogdown copied to clipboard
Create Blogs and Websites with R Markdown
I upgraded RStudio from 2022.02.3,492 to 2022.07.1,554 yesterday and found that the `hugo server` launched by `blogdown::serve_site()` would almost always be killed after I close any RStudio addin (e.g., the...
From https://github.com/rstudio/blogdown/issues/704#issuecomment-1119237429 Originally I was thinking of testing only a few themes in a GHA daily workflow: ```r themes = c( 'hugo-apero/hugo-apero', 'wowchemy/starter-hugo-academic', 'wowchemy/starter-research-group', 'yihui/hugo-prose' ) for (theme in themes)...
Right now (and please correct me if I'm wrong) blogdown uses the global R environment when it's rendering each blog post. Would it be possible to make blogdown use each...
Draft of an adapted version of this blog post using Wowchemy theme, but showing alpha to omega workflow of GitHub -> Netlify: https://alison.rbind.io/post/new-year-new-blogdown/ To follow #618 and #619 See full...
This PR proposes an option to `build_site()` using multiple parallel-running R processes, utilizing only the base package `parallel`. This can result in significant speed improvements with hardware common in 2019....
This allows to locate your **Rmd** files on a folder `dir_src` (default: ".") and your **blog** in another folder `dir_blog` (default: "content"). This add flexibility for different workflows. In particular,...
Hi Yihui, I want to use a custom output format when rendering posts in blogdown. In particular, I want to use the tufte output format `tufte::tufte_html` when rendering blogposts. I'm...
In the academic theme, the archetype files are helpfully commented like: https://github.com/rbind/apreshill/blob/master/archetypes/post/index.md ``` --- # Documentation: https://sourcethemes.com/academic/docs/managing-content/ title: "{{ replace .Name "-" " " | title }}" subtitle: "" summary:...
HI ! Thanks for your package, it's awesome! I would like to put a search bar in my blog. I found this: https://gohugo.io/tools/search/ But I was not able to implement...
With the recent developments in blogdown, one area where a difference remains between {hugodown} and {distill} on one side and {blogdown} on the other is syntax highlighting. The approach taken...